StatisticsReportsTestCase::testAccessLogging

7 statistics.test StatisticsReportsTestCase::testAccessLogging()
8 statistics.test StatisticsReportsTestCase::testAccessLogging()

Verifies that access logging is working and is reported correctly.

File

modules/statistics/statistics.test, line 196
Tests for statistics.module.

Code

function testAccessLogging() {
  $this->drupalGet('admin/reports/referrers');
  $this->drupalGet('admin/reports/hits');
  $this->assertText('Top referrers in the past 3 days', t('Hit title found.'));
  $this->assertText('admin/reports/referrers', t('Hit URL found.'));
}
Login or register to post comments