Phue\Test\Command\CreateScheduleTest::testTime PHP Method

testTime() public method

Test: Set time
public testTime ( )
    public function testTime()
    {
        $x = new CreateSchedule();
        $command = $x->time('2010-10-20T10:11:12');
        // Ensure property is set properly
        $this->assertAttributeInstanceOf('\\Phue\\TimePattern\\TimePatternInterface', 'time', $command);
        // Ensure self object is returned
        $this->assertEquals($command, $command->time('+10 seconds'));
    }