Skip to content

Commit

Permalink
Add empty test. We don't want to test actual things to be honest.
Browse files Browse the repository at this point in the history
  • Loading branch information
Simon Erkelens committed Oct 19, 2017
1 parent 45b9275 commit de0e8ea
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions tests/GoogleAnalyticsReportServiceTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -181,4 +181,10 @@ public function testGetWhitelistedPages()
// Error Pages are children of Page, so they should be included
$this->assertContains('page-not-found', $pages);
}

public function testUpdateVisits()
{
$result = $this->service->updateVisits([]);
$this->assertEquals(0, $result);
}
}

0 comments on commit de0e8ea

Please sign in to comment.