mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
c8eda9fd5c
Old PR: #4449
17 lines
342 B
PHP
17 lines
342 B
PHP
<?php
|
|
/**
|
|
* @package framework
|
|
* @subpackage tests
|
|
*/
|
|
class TimeTest extends SapphireTest {
|
|
|
|
public function testNice() {
|
|
$time = DBField::create_field('Time', '17:15:55');
|
|
$this->assertEquals('5:15pm', $time->Nice());
|
|
|
|
Config::inst()->update('Time', 'nice_format', 'H:i:s');
|
|
$this->assertEquals('17:15:55', $time->Nice());
|
|
}
|
|
|
|
}
|