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:
Diffstat (limited to 'misc/log-analytics/tests/tests.py')
-rw-r--r--misc/log-analytics/tests/tests.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/misc/log-analytics/tests/tests.py b/misc/log-analytics/tests/tests.py
index 5d42e51797..163c100d3a 100644
--- a/misc/log-analytics/tests/tests.py
+++ b/misc/log-analytics/tests/tests.py
@@ -44,7 +44,6 @@ def test_format_detection():
f.description = 'Testing autodetection of format ' + format_name + ' w/ garbage at end of line'
yield f
-
class Options(object):
"""Mock config options necessary to run checkers from Parser class."""
debug = False
@@ -65,19 +64,16 @@ class Options(object):
included_paths = []
enable_http_errors = False
-
class Config(object):
"""Mock configuration."""
options = Options()
format = import_logs.FORMATS['ncsa_extended']
-
class Resolver(object):
"""Mock resolver which doesn't check connection to real piwik."""
def check_format(self, format_):
pass
-
class Recorder(object):
"""Mock recorder which collects hits but doesn't put their in database."""
recorders = []