Exemple #1
0
 public function testOtherUnsubscribe()
 {
     $user = \Unflr\Eloquents\User::find(1);
     $this->testGuy->sendGET('/other/unsubscribe/' . $user->unsubscribe_guid);
     $this->testGuy->seeInDatabase('users', ['id' => 1, 'receives_notifs' => 'f']);
     $this->testGuy->seeInCurrentUrl('/thanks/' . $user->referral_code);
 }