mirror of
https://github.com/silverstripe/silverstripe-blog
synced 2024-10-22 11:05:58 +02:00
eabf8cf87e
API Enable authors to be specified and displayed on post info BUG Fix blogfilter bug Update documentation
32 lines
700 B
PHP
Executable File
32 lines
700 B
PHP
Executable File
<?php
|
|
|
|
class BlogPostFilterTest extends SapphireTest {
|
|
|
|
static $fixture_file = "blog.yml";
|
|
|
|
public function setUp() {
|
|
SS_Datetime::set_mock_now("2013-10-10 20:00:00");
|
|
parent::setUp();
|
|
}
|
|
|
|
public function tearDown() {
|
|
SS_Datetime::clear_mock_now();
|
|
parent::tearDown();
|
|
}
|
|
|
|
public function testFilter() {
|
|
$member = Member::currentUser();
|
|
if($member) $member->logout();
|
|
|
|
$blog = $this->objFromFixture('Blog', 'firstblog');
|
|
|
|
$count = $blog->AllChildren()->Count();
|
|
$this->assertEquals(3, $count, "Filtered blog posts");
|
|
|
|
SS_Datetime::set_mock_now("2020-01-01 00:00:00");
|
|
$count = $blog->AllChildren()->Count();
|
|
$this->assertEquals(5, $count, "Unfiltered blog posts");
|
|
}
|
|
|
|
}
|