Example #1
0
 /**
  *
  */
 public function testCreateMonthFromMonth()
 {
     $fromMonth = new Month(new \DateTime('1987-06-18'));
     $month = $this->factory->createMonth($fromMonth);
     $this->assertInstanceOf('Phellow\\Date\\Month', $month);
     $this->assertEquals('1987-06', $month->getValue());
     $this->assertNotSame($fromMonth, $month);
 }