aboutsummaryrefslogtreecommitdiffstats
path: root/pig/tests/test_filter_cdx.py
diff options
context:
space:
mode:
Diffstat (limited to 'pig/tests/test_filter_cdx.py')
-rw-r--r--pig/tests/test_filter_cdx.py11
1 files changed, 9 insertions, 2 deletions
diff --git a/pig/tests/test_filter_cdx.py b/pig/tests/test_filter_cdx.py
index 83f88bb..f46e5e1 100644
--- a/pig/tests/test_filter_cdx.py
+++ b/pig/tests/test_filter_cdx.py
@@ -10,9 +10,9 @@ Abstract into a base test class/template:
import os
import unittest
from nose.tools import *
-from pigpy.hadoop import Hadoop
-
+from pighelper import PigTestHelper
+"""
class TestFilterCDX(unittest.TestCase):
def setUp(self):
@@ -33,3 +33,10 @@ class TestFilterCDX(unittest.TestCase):
self.hadoop.run_pig_job("filter-cdx-ps.pig")
self.hadoop.copyToLocal("/reports/output.csv", "output.csv")
+"""
+
+class TestFilterCDX(PigTestHelper):
+
+ def test_thing(self):
+
+ self.run_pig("filter-cdx-ps.pig", "tests/files/example.cdx")