Update tests and token replace routine.

This commit is contained in:
James Cole
2015-03-28 06:25:36 +01:00
parent ed29eb8a5d
commit c9358acf5d
2 changed files with 4 additions and 2 deletions

View File

@@ -35,7 +35,7 @@ class HomeControllerTest extends TestCase
$end = '2015-03-31';
$this->be(new FireflyIII\User);
$this->call('POST', '/daterange', ['end' => $end, 'start' => $start]);
$this->call('POST', '/daterange', ['end' => $end, 'start' => $start,'_token' => 'replaceme']);
$this->assertResponseOk();
$this->assertSessionHas('start');
@@ -53,7 +53,7 @@ class HomeControllerTest extends TestCase
$end = '2015-03-31';
$this->be(new FireflyIII\User);
$this->call('POST', '/daterange', ['end' => $end, 'start' => $start]);
$this->call('POST', '/daterange', ['end' => $end, 'start' => $start,'_token' => 'replaceme']);
$this->assertResponseOk();
$this->assertSessionHas('start');