Skip to content

Commit

Permalink
Fix docblock formatting with Time Helper Test
Browse files Browse the repository at this point in the history
  • Loading branch information
shama committed Nov 8, 2011
1 parent 2c91f11 commit 1b95b01
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions lib/Cake/Test/Case/View/Helper/TimeHelperTest.php
Expand Up @@ -515,7 +515,8 @@ public function testIsThisYear() {
$result = $this->Time->isThisYear(mktime(0, 0, 0, mt_rand(1, 12), mt_rand(1, 28), date('Y')));
$this->assertTrue($result);
}
/**

/**
* testWasYesterday method
*
* @return void
Expand All @@ -534,7 +535,8 @@ public function testWasYesterday() {
$result = $this->Time->wasYesterday('-2 days');
$this->assertFalse($result);
}
/**

/**
* testIsTomorrow method
*
* @return void
Expand Down Expand Up @@ -594,7 +596,8 @@ public function testWasWithinLast() {
$this->assertTrue($this->Time->wasWithinLast('1 ', '-1 minute'));
$this->assertTrue($this->Time->wasWithinLast('1 ', '-23 hours -59 minutes -59 seconds'));
}
/**

/**
* testUserOffset method
*
* @return void
Expand Down

0 comments on commit 1b95b01

Please sign in to comment.