be($this->user());
$this->call('GET', route('admin.users.edit', [1]));
$this->assertResponseStatus(200);
// has bread crumb
$this->see('
');
}
/**
* @covers \FireflyIII\Http\Controllers\Admin\UserController::index
*/
public function testIndex()
{
$this->be($this->user());
$this->call('GET', route('admin.users'));
$this->assertResponseStatus(200);
// has bread crumb
$this->see('');
}
/**
* @covers \FireflyIII\Http\Controllers\Admin\UserController::show
*/
public function testShow()
{
$this->be($this->user());
$this->call('GET', route('admin.users.edit', [1]));
$this->assertResponseStatus(200);
// has bread crumb
$this->see('');
}
}