Ejemplo n.º 1
0
 /**
  * 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'));
 }