mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-18 18:44:16 +00:00
Added the $range argument to every test that might need it. See #170
This commit is contained in:
@@ -17,7 +17,7 @@ class PiggyBankControllerTest extends TestCase
|
||||
* @covers FireflyIII\Http\Controllers\PiggyBankController::add
|
||||
* @covers FireflyIII\Http\Controllers\PiggyBankController::__construct
|
||||
*/
|
||||
public function testAdd()
|
||||
public function testAdd($range)
|
||||
{
|
||||
$this->be($this->user());
|
||||
$this->call('GET', '/piggy-banks/add/1');
|
||||
@@ -69,7 +69,7 @@ class PiggyBankControllerTest extends TestCase
|
||||
/**
|
||||
* @covers FireflyIII\Http\Controllers\PiggyBankController::index
|
||||
*/
|
||||
public function testIndex()
|
||||
public function testIndex($range)
|
||||
{
|
||||
$this->be($this->user());
|
||||
$this->call('GET', '/piggy-banks');
|
||||
@@ -134,7 +134,7 @@ class PiggyBankControllerTest extends TestCase
|
||||
/**
|
||||
* @covers FireflyIII\Http\Controllers\PiggyBankController::show
|
||||
*/
|
||||
public function testShow()
|
||||
public function testShow($range)
|
||||
{
|
||||
$this->be($this->user());
|
||||
$this->call('GET', '/piggy-banks/show/1');
|
||||
|
Reference in New Issue
Block a user