Beispiel #1
0
 /**
  * @test
  * @large
  */
 public function testTrack()
 {
     $slot = Slot::find(1);
     $assert = $slot->track;
     $this->assertInstanceOf('Trails\\Models\\Track', $assert);
     $this->assertEquals(1, $assert->id);
     $this->assertEquals('git at it\'s best', $assert->name);
     $this->assertEquals(TrackStatus::PENDING, $assert->status);
     $this->assertEquals('A little course for all n3wbs on how to use git.', $assert->description);
 }