aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/test_Changelog.py14
1 files changed, 13 insertions, 1 deletions
diff --git a/tests/test_Changelog.py b/tests/test_Changelog.py
index c4c7c0cb..97414abb 100644
--- a/tests/test_Changelog.py
+++ b/tests/test_Changelog.py
@@ -119,7 +119,7 @@ def test_parse_no_eopch():
def test_parse_eopch():
"""
- Parse a the changelog of a package without eopch
+ Parse a the changelog of a package without epoch
Methods tested:
- L{gbp.deb.changelog.ChangeLog.__init__}
@@ -156,3 +156,15 @@ def test_parse_eopch():
>>> cl.is_native()
False
"""
+
+def test_parse_name():
+ Methods tested:
+ - L{gbp.deb.changelog.ChangeLog.__init__}
+
+ Properties tested:
+ - L{gbp.deb.changelog.ChangeLog.name}
+
+ >>> import gbp.deb.changelog
+ >>> cl = gbp.deb.changelog.ChangeLog(cl_debian)
+ >>> cl.name
+ 'git-buildpackage'