public function testStoreSuccessWithRedirectToList()
 {
     $object = new Gallery();
     $object->id = 1;
     Gallery::shouldReceive('create')->once()->andReturn($object);
     $input = ['name' => 'test', 'exit' => true];
     $this->call('POST', 'admin/galleries', $input);
     $this->assertRedirectedToRoute('admin.galleries.index');
 }