Ejemplo n.º 1
0
 public function testToggleGoal()
 {
     $goal = \Tsny\Models\Goal::find(1);
     $this->post('api/goal/1/toggle');
     $this->seeInDatabase('goals', ['id' => 1, 'complete' => !$goal->complete]);
     $this->post('api/goal/1/toggle');
     $this->seeInDatabase('goals', ['id' => 1, 'complete' => $goal->complete]);
 }