Skip to content
This repository has been archived by the owner on Jun 19, 2019. It is now read-only.

Commit

Permalink
Tests
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastiandedeyne committed Oct 4, 2017
1 parent 1ea9ff8 commit 5f7e5b9
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 90 deletions.
1 change: 1 addition & 0 deletions phpunit.xml
Expand Up @@ -28,6 +28,7 @@
</filter>
<php>
<env name="APP_ENV" value="testing"/>
<env name="DB_CONNECTION" value="sqlite"/>
<env name="CACHE_DRIVER" value="array"/>
<env name="SESSION_DRIVER" value="array"/>
<env name="QUEUE_DRIVER" value="sync"/>
Expand Down
90 changes: 0 additions & 90 deletions tests/Features/Front/HomeTest.php
Expand Up @@ -15,94 +15,4 @@ public function it_can_display_the_home_page()
->assertSee($article->name)
->assertSee($article->text);
}

/** @test */
public function it_can_display_the_home_page2()
{
$article = article('home');

$this->get('/nl')
->assertSee($article->name)
->assertSee($article->text);
}

/** @test */
public function it_can_display_the_home_page3()
{
$article = article('home');

$this->get('/nl')
->assertSee($article->name)
->assertSee($article->text);
}

/** @test */
public function it_can_display_the_home_page4()
{
$article = article('home');

$this->get('/nl')
->assertSee($article->name)
->assertSee($article->text);
}

/** @test */
public function it_can_display_the_home_page5()
{
$article = article('home');

$this->get('/nl')
->assertSee($article->name)
->assertSee($article->text);
}

/** @test */
public function it_can_display_the_home_page6()
{
$article = article('home');

$this->get('/nl')
->assertSee($article->name)
->assertSee($article->text);
}

/** @test */
public function it_can_display_the_home_page7()
{
$article = article('home');

$this->get('/nl')
->assertSee($article->name)
->assertSee($article->text);
}

/** @test */
public function it_can_display_the_home_page8()
{
$article = article('home');

$this->get('/nl')
->assertSee($article->name)
->assertSee($article->text);
}

/** @test */
public function it_can_display_the_home_page9()
{
$article = article('home');

$this->get('/nl')
->assertSee($article->name)
->assertSee($article->text);
}

/** @test */
public function it_can_display_the_home_page10()
{
$article = article('home');

$this->get('/nl')
->assertSee($article->name)
->assertSee($article->text);
}
}

0 comments on commit 5f7e5b9

Please sign in to comment.