aboutsummaryrefslogtreecommitdiffstats
path: root/pig/tests/pighelper.py
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@archive.org>2018-03-30 12:49:49 -0700
committerBryan Newbold <bnewbold@archive.org>2018-03-30 12:49:49 -0700
commit719538b753423ac301e686886282695150192e47 (patch)
tree9a3e7447bcc34ee92cecde1430ad2648db73483c /pig/tests/pighelper.py
parent1ee37422c649aeb11a3f0bbe873b9c479992a5aa (diff)
downloadsandcrawler-719538b753423ac301e686886282695150192e47.tar.gz
sandcrawler-719538b753423ac301e686886282695150192e47.zip
clean up pig test stuff
Diffstat (limited to 'pig/tests/pighelper.py')
-rw-r--r--pig/tests/pighelper.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/pig/tests/pighelper.py b/pig/tests/pighelper.py
index 3786a07..d0d89d2 100644
--- a/pig/tests/pighelper.py
+++ b/pig/tests/pighelper.py
@@ -5,17 +5,16 @@ Include `PigTestHelper` and extend in your test classes, call `self.run_pig()`
with your script and example input file, then look at the output (at returned
path) to check for validity.
-TODO: squelch pig stdout going to console, presumably because of subprocess.run
-behavior
+TODO: switch to pytest-style fixture generation
author: Bryan Newbold <bnewbold@archive.org>
"""
+
import os
import shutil
import tempfile
import unittest
import subprocess
-from nose.tools import *
class PigTestHelper(unittest.TestCase):