mentors

mentors Git Source Tree


Root/vendor/nesbot/carbon/tests/InstanceTest.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 InstanceTest extends TestFixture
{
   public function testInstanceFromDateTime()
   {
      $dating = Carbon::instance(\DateTime::createFromFormat('Y-m-d H:i:s', '1975-05-21 22:32:11'));
      $this->assertCarbon($dating, 1975, 5, 21, 22, 32, 11);
   }

   public function testInstanceFromDateTimeKeepsTimezoneName()
   {
      $dating = Carbon::instance(\DateTime::createFromFormat('Y-m-d H:i:s', '1975-05-21 22:32:11')->setTimezone(new \DateTimeZone('America/Vancouver')));
      $this->assertSame('America/Vancouver', $dating->tzName);
   }
}

Archive Download this file

Branches

Number of commits:
Page rendered in 0.11391s using 11 queries.