Skip to content

Commit f2becad

Browse files
committed
Update test method skip notice for 78d7570
1 parent 78d7570 commit f2becad

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

packages/framework/tests/Feature/NavigationMenuTest.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -236,15 +236,15 @@ public function testPagesInSubdirectoriesAreNotAddedToTheNavigationMenuWithConfi
236236

237237
public function testHasDropdownsReturnsFalseWhenThereAreNoDropdowns()
238238
{
239-
$this->markTestSkipped('Tested method may be removed.');
239+
$this->markTestSkipped('Tested method removed in https://github.com/hydephp/develop/commit/78d7570060718c5bca1428e4464aaf630d66ec6a');
240240
config(['hyde.navigation.subdirectories' => 'dropdown']);
241241
$menu = $this->createNavigationMenu();
242242
$this->assertFalse($menu->hasDropdowns());
243243
}
244244

245245
public function testHasDropdownsReturnsTrueWhenThereAreDropdowns()
246246
{
247-
$this->markTestSkipped('Tested method may be removed.');
247+
$this->markTestSkipped('Tested method removed in https://github.com/hydephp/develop/commit/78d7570060718c5bca1428e4464aaf630d66ec6a');
248248
config(['hyde.navigation.subdirectories' => 'dropdown']);
249249
Routes::addRoute((new MarkdownPage('foo/bar'))->getRoute());
250250
$menu = $this->createNavigationMenu();
@@ -253,14 +253,14 @@ public function testHasDropdownsReturnsTrueWhenThereAreDropdowns()
253253

254254
public function testHasDropdownsAlwaysReturnsFalseWhenDropdownsAreDisabled()
255255
{
256-
$this->markTestSkipped('Tested method may be removed.');
256+
$this->markTestSkipped('Tested method removed in https://github.com/hydephp/develop/commit/78d7570060718c5bca1428e4464aaf630d66ec6a');
257257
Routes::addRoute((new MarkdownPage('foo/bar'))->getRoute());
258258
$this->assertFalse($this->createNavigationMenu()->hasDropdowns());
259259
}
260260

261261
public function testGetDropdownsReturnsEmptyArrayThereAreNoDropdowns()
262262
{
263-
$this->markTestSkipped('Tested method may be removed.');
263+
$this->markTestSkipped('Tested method removed in https://github.com/hydephp/develop/commit/78d7570060718c5bca1428e4464aaf630d66ec6a');
264264
config(['hyde.navigation.subdirectories' => 'dropdown']);
265265
$menu = $this->createNavigationMenu();
266266
$this->assertCount(0, $menu->getDropdowns());
@@ -378,7 +378,7 @@ public function testPagesInDropdownsDoNotGetAddedToTheMainNavigation()
378378

379379
public function testDropdownMenuItemsAreSortedByPriority()
380380
{
381-
$this->markTestSkipped('Tested method may be removed.');
381+
$this->markTestSkipped('Tested method removed in https://github.com/hydephp/develop/commit/78d7570060718c5bca1428e4464aaf630d66ec6a');
382382
config(['hyde.navigation.subdirectories' => 'dropdown']);
383383

384384
Routes::addRoute(new Route(new MarkdownPage('foo/foo', ['navigation.priority' => 1])));

0 commit comments

Comments
 (0)