summaryrefslogtreecommitdiffhomepage
path: root/tests/26_test_dch_extract_thanks.py
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2016-07-04 21:25:47 +0200
committerGuido Günther <agx@sigxcpu.org>2016-07-05 15:02:05 +0200
commit8d84fd3f1c6f85d310f5e8d4b7955d3d9e6a8d02 (patch)
tree9a9d173fa6a13829e2cc09f38b04170aafa40013 /tests/26_test_dch_extract_thanks.py
parent3a5a497c9e42b0167baa8847fc8a9f09cc111ceb (diff)
dch: Match 'thanks' case insensitive
Closes: #746753
Diffstat (limited to 'tests/26_test_dch_extract_thanks.py')
-rw-r--r--tests/26_test_dch_extract_thanks.py39
1 files changed, 39 insertions, 0 deletions
diff --git a/tests/26_test_dch_extract_thanks.py b/tests/26_test_dch_extract_thanks.py
new file mode 100644
index 00000000..bfac0252
--- /dev/null
+++ b/tests/26_test_dch_extract_thanks.py
@@ -0,0 +1,39 @@
+# vim: set fileencoding=utf-8 :
+#
+# (C) 2015 Jonathan Toppins <jtoppins@cumulusnetworks.com>
+# (C) 2016 Guido Günther <agx@sigxcpu.org>
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, please see
+# <http://www.gnu.org/licenses/>
+"""Test gbp.dch.extract_thanks_info()"""
+
+import unittest
+
+from gbp.dch import extract_thanks_info
+
+
+class OptionsStub:
+ def __init__(self):
+ self.meta_closes = "Closes|LP"
+ self.meta_closes_bugnum = r'(?:bug|issue)?\#?\s?\d+'
+
+
+class TestExtractThanks(unittest.TestCase):
+ def test_debian_commands(self):
+ """Test default thanks extraction"""
+ lines = """
+thAnks: a lot
+Thanks: everyone
+"""
+ bugs, dummy = extract_thanks_info(lines.split('\n'), None)
+ self.assertEquals(bugs, ['a lot', 'everyone'])