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:
authorMatthieu Napoli <matthieu@mnapoli.fr>2015-06-01 12:33:42 +0300
committerMatthieu Napoli <matthieu@mnapoli.fr>2015-06-01 12:33:42 +0300
commit869e5715b30ac6c06ffebb6ce9a0217f1b21bbb6 (patch)
tree4e42f30fbbb7bc95a6c6b97f35a8ec6993d74785 /tests/PHPUnit/System/OneVisitorTwoVisitsTest.php
parente6333c28d6aebb2a924221d9cb330ec8f77685d0 (diff)
Removed deprecated method scheduled for removal (fixing unit tests)
Diffstat (limited to 'tests/PHPUnit/System/OneVisitorTwoVisitsTest.php')
-rwxr-xr-xtests/PHPUnit/System/OneVisitorTwoVisitsTest.php22
1 files changed, 0 insertions, 22 deletions
diff --git a/tests/PHPUnit/System/OneVisitorTwoVisitsTest.php b/tests/PHPUnit/System/OneVisitorTwoVisitsTest.php
index 8ca8259846..9aed096e77 100755
--- a/tests/PHPUnit/System/OneVisitorTwoVisitsTest.php
+++ b/tests/PHPUnit/System/OneVisitorTwoVisitsTest.php
@@ -194,28 +194,6 @@ class OneVisitorTwoVisitsTest extends SystemTestCase
}
/**
- * Test that Archive::getBlob won't fetch extra unnecessary blobs.
- */
- public function testArchiveSingleGetBlob()
- {
- $archive = Archive::build(self::$fixture->idSite, 'day', self::$fixture->dateTime);
- $cache = $archive->getBlob('Actions_actions', 'all');
-
- $foundSubtable = false;
-
- $this->assertTrue(count($cache) > 0, "empty blob cache");
- foreach ($cache as $name => $value) {
- $this->assertTrue(strpos($name, "Actions_actions_url") === false, "found blob w/ name '$name'");
-
- if (strpos($name, "Actions_actions_") !== false) {
- $foundSubtable = true;
- }
- }
-
- $this->assertTrue($foundSubtable, "Actions_actions subtable was not loaded");
- }
-
- /**
* Test that restricting the number of sites to those viewable to another login
* works when building an archive query object.
*/