コード例 #1
0
ファイル: TimeTest.php プロジェクト: titon/utility-old
 /**
  * Test that wasLastMonth() returns true if the passed date was last month.
  */
 public function testWasLastMonth()
 {
     $this->assertTrue(Time::wasLastMonth('-31 days'));
     $this->assertFalse(Time::wasLastMonth('+31 days'));
     $this->assertFalse(Time::wasLastMonth('+0 month'));
 }