Skip to content

Commit

Permalink
Update to expect the real order
Browse files Browse the repository at this point in the history
  • Loading branch information
caendesilva committed Jul 12, 2024
1 parent d45f390 commit 741cf57
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions packages/framework/tests/Feature/DynamicAuthorPagesTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,18 +22,18 @@ public function testAuthorPagesAreGenerated()
$this->assertSame([
'_pages/404.blade.php',
'_pages/index.blade.php',
'author/mr_hyde',
'author/jane_doe',
'author/user123',
// TODO: 'author/anonymous',
// TODO: 'author/guest',
'_posts/anonymous_post_1.md',
'_posts/guest_post_1.md',
'_posts/hyde_post_1.md',
'_posts/hyde_post_2.md',
'_posts/hyde_post_3.md',
'_posts/jane_post_1.md',
'_posts/jane_post_2.md',
'_posts/anonymous_post_1.md',
'_posts/guest_post_1.md',
'author/mr_hyde',
'author/jane_doe',
'author/user123',
// TODO: 'author/anonymous',
// TODO: 'author/guest',
], array_keys(Hyde::pages()->all()));
}

Expand Down

0 comments on commit 741cf57

Please sign in to comment.