Skip to content

Commit 84b0560

Browse files
committed
group tests
1 parent 30afb55 commit 84b0560

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

tests/GlobalTypesTest.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
;
1818

1919
assertMatchesHtmlSnapshot((string)$og);
20-
});
20+
})->group('global');
2121

2222
it('can generate article tags', function () {
2323
$og = Article::make('Article | Example')
@@ -36,7 +36,7 @@
3636
;
3737

3838
assertMatchesHtmlSnapshot((string)$og);
39-
});
39+
})->group('global');
4040

4141
it('can generate book tags', function () {
4242
$og = Book::make('Book | Example')
@@ -54,7 +54,7 @@
5454
;
5555

5656
assertMatchesHtmlSnapshot((string)$og);
57-
});
57+
})->group('global');
5858

5959
it('can generate profile tags', function () {
6060
$og = Profile::make('Profile | Example')
@@ -72,4 +72,4 @@
7272
;
7373

7474
assertMatchesHtmlSnapshot((string)$og);
75-
});
75+
})->group('global');

tests/MusicTypesTest.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
;
3232

3333
assertMatchesHtmlSnapshot((string)$og);
34-
});
34+
})->group('music');
3535

3636
it('can generate album tags', function () {
3737
$og = Album::make('Title | Example')
@@ -51,7 +51,7 @@
5151
;
5252

5353
assertMatchesHtmlSnapshot((string)$og);
54-
});
54+
})->group('music');
5555

5656
it('can generate playlist tags', function () {
5757
$og = Playlist::make('Title | Example')
@@ -70,7 +70,7 @@
7070
;
7171

7272
assertMatchesHtmlSnapshot((string)$og);
73-
});
73+
})->group('music');
7474

7575
it('can generate radiostation tags', function () {
7676
$og = RadioStation::make('Title | Example')
@@ -85,4 +85,4 @@
8585
;
8686

8787
assertMatchesHtmlSnapshot((string)$og);
88-
});
88+
})->group('music');

tests/VideoTypesTest.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
;
3939

4040
assertMatchesHtmlSnapshot((string)$og);
41-
});
41+
})->group('video');
4242

4343
it('can generate tv show tags', function () {
4444
$og = TvShow::make('Title | Example')
@@ -57,7 +57,7 @@
5757
;
5858

5959
assertMatchesHtmlSnapshot((string)$og);
60-
});
60+
})->group('video');
6161

6262
it('can generate episode tags', function () {
6363
$og = Episode::make('Title | Example')
@@ -78,7 +78,7 @@
7878
;
7979

8080
assertMatchesHtmlSnapshot((string)$og);
81-
});
81+
})->group('video');
8282

8383
it('can generate other tags', function () {
8484
$og = Other::make('Title | Example')
@@ -99,4 +99,4 @@
9999
;
100100

101101
assertMatchesHtmlSnapshot((string)$og);
102-
});
102+
})->group('video');

0 commit comments

Comments
 (0)