summaryrefslogtreecommitdiff
path: root/migrate/tests/fixture/base.py
diff options
context:
space:
mode:
authorMonty Taylor <mordred@inaugust.com>2013-07-11 16:24:50 -0400
committerMonty Taylor <mordred@inaugust.com>2013-07-11 16:54:46 -0400
commita71799ea2cbfa1354c786991a85b610753f5474c (patch)
tree11381f15bdd75736cef5cd50978fe9af9560cf7c /migrate/tests/fixture/base.py
parent85fe71617f301e2163a97108aaa70de5bfb6b4a5 (diff)
downloadsqalchemy-migrate-a71799ea2cbfa1354c786991a85b610753f5474c.tar.gz
Updated to OpenStack Build stuff.
Diffstat (limited to 'migrate/tests/fixture/base.py')
-rw-r--r--migrate/tests/fixture/base.py12
1 files changed, 3 insertions, 9 deletions
diff --git a/migrate/tests/fixture/base.py b/migrate/tests/fixture/base.py
index 67aabf8..38c91af 100644
--- a/migrate/tests/fixture/base.py
+++ b/migrate/tests/fixture/base.py
@@ -2,17 +2,11 @@
# -*- coding: utf-8 -*-
import re
-import unittest2
+import testtools
-class Base(unittest2.TestCase):
+class Base(testtools.TestCase):
- def setup_method(self,func=None):
- self.setUp()
-
- def teardown_method(self,func=None):
- self.tearDown()
-
- def assertEqualsIgnoreWhitespace(self, v1, v2):
+ def assertEqualIgnoreWhitespace(self, v1, v2):
"""Compares two strings that should be\
identical except for whitespace
"""