aboutsummaryrefslogtreecommitdiff
path: root/tests/unit/db/test_traits.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unit/db/test_traits.py')
-rw-r--r--tests/unit/db/test_traits.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/unit/db/test_traits.py b/tests/unit/db/test_traits.py
index 5f52c18..d9d7bbb 100644
--- a/tests/unit/db/test_traits.py
+++ b/tests/unit/db/test_traits.py
@@ -121,6 +121,9 @@ class TestTraitsDBFunctions(TestCase):
trait_source)
def test_build_trait_name_with_good_fullnames(self):
+ """
+ Check that the name is built correctly.
+ """
for fullname, expected in [
["testdb::testname",
{"db": {"dataset_name": "testdb"}, "trait_name": "testname",
@@ -133,6 +136,9 @@ class TestTraitsDBFunctions(TestCase):
self.assertEqual(build_trait_name(fullname), expected)
def test_build_trait_name_with_bad_fullnames(self):
+ """
+ Check that an exception is raised if the full name format is wrong.
+ """
for fullname in ["", "test", "test:test"]:
with self.subTest(fullname=fullname):
with self.assertRaises(AssertionError, msg="Name format error"):