Esempio n. 1
0
 function it_should_display_relative_air_date_for_other_shows(ScheduledShow $show)
 {
     $show->getRelativeAirDate()->willReturn('Wednesday');
     $show->timespan()->willReturn('1 - 3 AM');
     $this->beConstructedThrough('fromScheduledShow', [$show]);
     $this->playOrder(2);
     $this->displayText()->shouldBe('Wednesday 1 - 3 AM');
     $this->playOrder(3);
     $this->displayText()->shouldBe('Wednesday 1 - 3 AM');
 }