Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormattpiwik <matthieu.aubry@gmail.com>2008-01-11 03:19:26 +0300
committermattpiwik <matthieu.aubry@gmail.com>2008-01-11 03:19:26 +0300
commita53e8a0f7671ffd1fdc97740770f2b86bc234987 (patch)
treef113dec6c62b39f26dd05c9ab0636184717ee466 /tests/modules/ArchiveProcessing/Day.test.php
parent99d4cea77598e9584d3ae849fe17c3da66f4844e (diff)
- removed all TODO
- added smart "low population" exclusion; now rows with values less than 2% are automatically deleted - factoring some code - added tests - Fixed tests git-svn-id: http://dev.piwik.org/svn/trunk@142 59fd770c-687e-43c8-a1e3-f5a4ff64c105
Diffstat (limited to 'tests/modules/ArchiveProcessing/Day.test.php')
-rw-r--r--tests/modules/ArchiveProcessing/Day.test.php3
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/modules/ArchiveProcessing/Day.test.php b/tests/modules/ArchiveProcessing/Day.test.php
index 5151c55056..f05682783a 100644
--- a/tests/modules/ArchiveProcessing/Day.test.php
+++ b/tests/modules/ArchiveProcessing/Day.test.php
@@ -25,11 +25,10 @@ class Test_Piwik_ArchiveProcessing_Day extends UnitTestCase
{
}
- //TODO test with a label in the column list that is composed of numbers only
function test_generateDataTable_simple()
{
$row1 = new Piwik_DataTable_Row( array( Piwik_DataTable_Row::COLUMNS =>
- array( 'label' => 'page1', 'visits' => 1, 'actions' => 2)));
+ array( 'label' => 'page1', 'visits' => 1, 'actions' => 2, '666' => 'evil' )));
$input = array(
'page1' => $row1,