Ejemplo n.º 1
0
 public function testStoreSuccessWithRedirectToList()
 {
     $object = new Tag();
     $object->id = 1;
     Tag::shouldReceive('create')->once()->andReturn($object);
     $input = ['tag' => 'test', 'slug' => 'test', 'exit' => true];
     $this->call('POST', 'admin/tags', $input);
     $this->assertRedirectedToRoute('admin.tags.index');
 }