summaryrefslogtreecommitdiff
path: root/migrate/tests/versioning/test_template.py
diff options
context:
space:
mode:
Diffstat (limited to 'migrate/tests/versioning/test_template.py')
-rw-r--r--migrate/tests/versioning/test_template.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/migrate/tests/versioning/test_template.py b/migrate/tests/versioning/test_template.py
index 16bdc36..a079d8b 100644
--- a/migrate/tests/versioning/test_template.py
+++ b/migrate/tests/versioning/test_template.py
@@ -15,17 +15,17 @@ class TestTemplate(fixture.Pathed):
def test_templates(self):
"""We can find the path to all repository templates"""
path = str(Template())
- self.assert_(os.path.exists(path))
+ self.assertTrue(os.path.exists(path))
def test_repository(self):
"""We can find the path to the default repository"""
path = Template().get_repository()
- self.assert_(os.path.exists(path))
+ self.assertTrue(os.path.exists(path))
def test_script(self):
"""We can find the path to the default migration script"""
path = Template().get_script()
- self.assert_(os.path.exists(path))
+ self.assertTrue(os.path.exists(path))
def test_custom_templates_and_themes(self):
"""Users can define their own templates with themes"""