Merge pull request #90 from creative-commoners/pulls/4.1/reduce-test-assertion

FIX Updating test to not assert order of results
This commit is contained in:
Robbie Averill 2018-07-31 09:46:21 +12:00 committed by GitHub
commit 6ff726d0a1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 11 additions and 7 deletions

View File

@ -52,13 +52,17 @@ class ContentReviewReportTest extends FunctionalTest
"ReviewDateBefore" => "2010-12-12",
]);
$this->assertEquals([
"Contact Us Child",
"Home",
"About Us",
"Staff",
"Contact Us",
], $results->column("Title"));
$this->assertListContains([
['Title' => 'Contact Us Child'],
['Title' => 'Home'],
['Title' => 'About Us'],
['Title' => 'Staff'],
['Title' => 'Contact Us'],
], $results);
$this->assertListNotContains([
['Title' => 'Page without review date'],
['Title' => 'Page owned by group'],
], $results);
DBDatetime::set_mock_now("2010-02-13 00:00:00");