コード例 #1
0
 public function testStoreSuccessWithRedirectToList()
 {
     $object = new Translation();
     $object->id = 1;
     Translation::shouldReceive('create')->once()->andReturn($object);
     $input = array('key' => 'test', 'exit' => true);
     $this->call('POST', 'admin/translations', $input);
     $this->assertRedirectedToRoute('admin.translations.index');
 }