Update unittests to be Python 2.6 compatible.

Fixes bug 980504 by introducing unittest2 module into novaclient.

Change-Id: I613665eb174598a162795cec737078f960adc4cf
This commit is contained in:
Brian Lamar 2012-04-13 01:15:14 -04:00
parent ad4a04a64e
commit d6d7386fad
2 changed files with 3 additions and 2 deletions

View File

@ -1,5 +1,5 @@
import unittest
import unittest2
class TestCase(unittest.TestCase):
class TestCase(unittest2.TestCase):
pass

View File

@ -6,3 +6,4 @@ nose
prettytable
simplejson
pep8==0.6.1
unittest2