Ejemplo n.º 1
0
 /**
  * @covers Fuel\Common\Date::setTimezone
  * @group Common
  */
 public function testSetTimezone()
 {
     $expected = 'Sun Dec 22 23:23:38 2013';
     $this->instance->setTimezone('America/New_York');
     $this->assertEquals((string) $this->instance, $expected);
     $expected = 'Sun Dec 22 23:23:38 2013';
     $this->instance->setTimezone(null);
     $this->assertEquals((string) $this->instance, $expected);
 }