This repository has been archived on 2025-08-22. You can view files and clone it, but cannot push or open issues or pull requests.
Files
dumbo/vendor/nesbot/carbon/tests/ConstructTest.php
2014-11-25 16:42:40 +01:00

81 lines
2.4 KiB
PHP

<?php
/*
* This file is part of the Carbon package.
*
* (c) Brian Nesbitt <brian@nesbot.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
use Carbon\Carbon;
class ConstructTest extends TestFixture
{
public function testCreatesAnInstanceDefaultToNow()
{
$c = new Carbon();
$now = Carbon::now();
$this->assertEquals('Carbon\Carbon', get_class($c));
$this->assertEquals($now->tzName, $c->tzName);
$this->assertCarbon($c, $now->year, $now->month, $now->day, $now->hour, $now->minute, $now->second);
}
public function testParseCreatesAnInstanceDefaultToNow()
{
$c = Carbon::parse();
$now = Carbon::now();
$this->assertEquals('Carbon\Carbon', get_class($c));
$this->assertEquals($now->tzName, $c->tzName);
$this->assertCarbon($c, $now->year, $now->month, $now->day, $now->hour, $now->minute, $now->second);
}
public function testWithFancyString()
{
$c = new Carbon('first day of January 2008');
$this->assertCarbon($c, 2008, 1, 1, 0, 0, 0);
}
public function testParseWithFancyString()
{
$c = Carbon::parse('first day of January 2008');
$this->assertCarbon($c, 2008, 1, 1, 0, 0, 0);
}
public function testDefaultTimezone()
{
$c = new Carbon('now');
$this->assertSame('America/Toronto', $c->tzName);
}
public function testParseWithDefaultTimezone()
{
$c = Carbon::parse('now');
$this->assertSame('America/Toronto', $c->tzName);
}
public function testSettingTimezone()
{
$c = new Carbon('now', new \DateTimeZone('Europe/London'));
$this->assertSame('Europe/London', $c->tzName);
$this->assertSame(1, $c->offsetHours);
}
public function testParseSettingTimezone()
{
$c = Carbon::parse('now', new \DateTimeZone('Europe/London'));
$this->assertSame('Europe/London', $c->tzName);
$this->assertSame(1, $c->offsetHours);
}
public function testSettingTimezoneWithString()
{
$c = new Carbon('now', 'Asia/Tokyo');
$this->assertSame('Asia/Tokyo', $c->tzName);
$this->assertSame(9, $c->offsetHours);
}
public function testParseSettingTimezoneWithString()
{
$c = Carbon::parse('now', 'Asia/Tokyo');
$this->assertSame('Asia/Tokyo', $c->tzName);
$this->assertSame(9, $c->offsetHours);
}
}