Skip to content

Commit

Permalink
Updated slug test wording.
Browse files Browse the repository at this point in the history
  • Loading branch information
kirkbushell committed Aug 26, 2023
1 parent 4f3f330 commit 6f273db
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/Acceptance/SluggedTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

class SluggedTest extends AcceptanceTestCase
{
public function testUserSlug()
function test_slugsCanBeGeneratedWithCustomStrategy()
{
$user = new User;
$user->firstName = 'Kirk';
Expand All @@ -16,7 +16,7 @@ public function testUserSlug()
$this->assertEquals('kirk-bushell', (string) $user->slug);
}

public function testPostSlug()
function test_slugsCanBeGeneratedUsingRandomValues()
{
$user = new User;
$user->firstName = 'Kirk';
Expand Down

0 comments on commit 6f273db

Please sign in to comment.