summaryrefslogtreecommitdiff
path: root/tests/test_Changelog.py
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2013-04-29 14:45:44 +0200
committerGuido Günther <agx@sigxcpu.org>2013-04-29 14:48:24 +0200
commit45c2346f6a52aec196dd89b8d09d8b06d05b8867 (patch)
tree2ca5e6855cddf445e7667537a452411e4f751f4f /tests/test_Changelog.py
parentaee9284d3dba4ab415321a2e389d62fe49ff9b91 (diff)
ChangeLog: Remove is_native
to avoid accidental usage. Use DebianSource.is_native instead.
Diffstat (limited to 'tests/test_Changelog.py')
-rw-r--r--tests/test_Changelog.py9
1 files changed, 0 insertions, 9 deletions
diff --git a/tests/test_Changelog.py b/tests/test_Changelog.py
index 55cbcad..30f25e5 100644
--- a/tests/test_Changelog.py
+++ b/tests/test_Changelog.py
@@ -56,7 +56,6 @@ def test_parse_debian_only():
Methods tested:
- L{gbp.deb.changelog.ChangeLog.__init__}
- - L{gbp.deb.changelog.ChangeLog.is_native}
Properties tested:
- L{gbp.deb.changelog.ChangeLog.version}
@@ -81,8 +80,6 @@ def test_parse_debian_only():
True
>>> cl.epoch
>>> cl.upstream_version
- >>> cl.is_native()
- True
"""
def test_parse_no_eopch():
@@ -92,7 +89,6 @@ def test_parse_no_eopch():
Methods tested:
- L{gbp.deb.changelog.ChangeLog.__init__}
- L{gbp.deb.changelog.ChangeLog.has_epoch}
- - L{gbp.deb.changelog.ChangeLog.is_native}
Properties tested:
- L{gbp.deb.changelog.ChangeLog.version}
@@ -120,8 +116,6 @@ def test_parse_no_eopch():
'1.0'
>>> cl.has_epoch()
False
- >>> cl.is_native()
- False
"""
def test_parse_eopch():
@@ -131,7 +125,6 @@ def test_parse_eopch():
Methods tested:
- L{gbp.deb.changelog.ChangeLog.__init__}
- L{gbp.deb.changelog.ChangeLog.has_epoch}
- - L{gbp.deb.changelog.ChangeLog.is_native}
Properties tested:
- L{gbp.deb.changelog.ChangeLog.version}
@@ -160,8 +153,6 @@ def test_parse_eopch():
'1.2.0'
>>> cl.has_epoch()
True
- >>> cl.is_native()
- False
"""
def test_parse_name():