mirror of
https://github.com/httpie/cli.git
synced 2025-01-24 14:28:34 +01:00
Fixed tests.
This commit is contained in:
parent
f4dde9d9b3
commit
a44ef6c443
@ -4,7 +4,7 @@ python:
|
|||||||
- 2.7
|
- 2.7
|
||||||
# TODO: Python 3
|
# TODO: Python 3
|
||||||
#- 3.2
|
#- 3.2
|
||||||
script: python setup.py test
|
script: python tests.py
|
||||||
install:
|
install:
|
||||||
- pip install requests pygments
|
- pip install requests pygments
|
||||||
- "if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then pip install argparse; fi"
|
- "if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then pip install argparse; fi"
|
||||||
|
12
tests.py
12
tests.py
@ -30,18 +30,18 @@ class BaseTest(unittest.TestCase):
|
|||||||
|
|
||||||
def assertNotIn(self, member, container, msg=None):
|
def assertNotIn(self, member, container, msg=None):
|
||||||
sup = super(BaseTest, self)
|
sup = super(BaseTest, self)
|
||||||
if hasattr('sup', 'assertNotIn'):
|
if hasattr(sup, 'assertNotIn'):
|
||||||
sup.assertIn(member, container, msg)
|
sup.assertNotIn(member, container, msg)
|
||||||
else:
|
else:
|
||||||
self.assert_(member not in container, msg)
|
self.assert_(member not in container, msg)
|
||||||
|
|
||||||
def assertDictEqual(self, d1, d2, msg=None):
|
def assertDictEqual(self, d1, d2, msg=None):
|
||||||
sup = super(BaseTest, self)
|
sup = super(BaseTest, self)
|
||||||
if hasattr('sup', 'assertDictEqual'):
|
if hasattr(sup, 'assertDictEqual'):
|
||||||
self.assertDictEqual(d1, d2, msg)
|
sup.assertDictEqual(d1, d2, msg)
|
||||||
else:
|
else:
|
||||||
sup.assertEqual(set(d1.keys()), set(d2.keys()), msg)
|
self.assertEqual(set(d1.keys()), set(d2.keys()), msg)
|
||||||
sup.assertEqual(sorted(d1.values()), sorted(d2.values()), msg)
|
self.assertEqual(sorted(d1.values()), sorted(d2.values()), msg)
|
||||||
|
|
||||||
|
|
||||||
class TestItemParsing(BaseTest):
|
class TestItemParsing(BaseTest):
|
||||||
|
Loading…
Reference in New Issue
Block a user