diff options
author | Matěj Cepl <mcepl@redhat.com> | 2014-01-11 11:06:05 +0100 |
---|---|---|
committer | Matěj Cepl <mcepl@redhat.com> | 2014-01-11 11:31:46 +0100 |
commit | 2c734aeadf108363e570f59b4a69adbe14835171 (patch) | |
tree | f59903beca49ddd4515b8c00fe904eda73033643 /test | |
parent | 9a43d17636e6f77eb93d5c4d3653f36b3348851a (diff) | |
download | gg_scraper-2c734aeadf108363e570f59b4a69adbe14835171.tar.gz |
Eliminate do_redirect() method.0.6
One less HTTP connection, which was actually not needed.
Diffstat (limited to 'test')
-rw-r--r-- | test/test_unit.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/test/test_unit.py b/test/test_unit.py index b286f97..e0fd0a4 100644 --- a/test/test_unit.py +++ b/test/test_unit.py @@ -20,10 +20,6 @@ class TestGGScrapper(unittest.TestCase): obs_URL = gg_scraper.Group.unenscape_Google_bang_URL(IN_URL) self.assertEqual(obs_URL, EXP_URL) - def test_do_redirect(self): - obs_URL = gg_scraper.Group.do_redirect(ORIG_URL) - self.assertEqual(obs_URL, EXP_URL) - class TestMBOX(unittest.TestCase): def setUp(self): |