Browse Source

Deleting another test for removed code

Jose Lorenzo Rodriguez 12 years ago
parent
commit
0772285ebf
1 changed files with 0 additions and 16 deletions
  1. 0 16
      tests/TestCase/Utility/TimeTest.php

+ 0 - 16
tests/TestCase/Utility/TimeTest.php

@@ -460,22 +460,6 @@ class TimeTest extends TestCase {
 	}
 
 /**
- * testIsTomorrow method
- *
- * @return void
- */
-	public function testIsTomorrow() {
-		$result = $this->Time->isTomorrow('+1 day');
-		$this->assertTrue($result);
-		$result = $this->Time->isTomorrow('+1 days');
-		$this->assertTrue($result);
-		$result = $this->Time->isTomorrow('+0 day');
-		$this->assertFalse($result);
-		$result = $this->Time->isTomorrow('-1 day');
-		$this->assertFalse($result);
-	}
-
-/**
  * testWasWithinLast method
  *
  * @return void