From 6bae1d03272d4c66bb2af1fdd0c049eebd5f4934 Mon Sep 17 00:00:00 2001 From: Daniel Supernault Date: Sun, 8 Jan 2023 14:08:22 -0700 Subject: [PATCH] Remove unused tests --- tests/Unit/DateTimeTest.php | 32 -------------------------------- tests/Unit/SnowflakeTest.php | 16 ---------------- 2 files changed, 48 deletions(-) delete mode 100644 tests/Unit/DateTimeTest.php delete mode 100644 tests/Unit/SnowflakeTest.php diff --git a/tests/Unit/DateTimeTest.php b/tests/Unit/DateTimeTest.php deleted file mode 100644 index 6f9021e62..000000000 --- a/tests/Unit/DateTimeTest.php +++ /dev/null @@ -1,32 +0,0 @@ -assertEquals(9, $ts->month); - $this->assertEquals(16, $ts->day); - $this->assertEquals(2019, $ts->year); - $this->assertEquals(2, $ts->hour); - $this->assertEquals(41, $ts->minute); - } - - /** @test */ - public function p3kTimestamp() - { - $ts = Carbon::createFromFormat(DateTime::ISO8601, '2019-09-16T08:40:55+10:00'); - $this->assertEquals(9, $ts->month); - $this->assertEquals(16, $ts->day); - $this->assertEquals(2019, $ts->year); - $this->assertEquals(8, $ts->hour); - $this->assertEquals(40, $ts->minute); - } -} diff --git a/tests/Unit/SnowflakeTest.php b/tests/Unit/SnowflakeTest.php deleted file mode 100644 index 76544261c..000000000 --- a/tests/Unit/SnowflakeTest.php +++ /dev/null @@ -1,16 +0,0 @@ -assertEquals($expected, $actual); - } -}