Merging upstream version 0.18.0.
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
0453b640a2
commit
129d2ce1fc
118 changed files with 4146 additions and 2087 deletions
|
@ -1,23 +1,29 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# pylint: disable=
|
||||
from qa.shell import gitlint
|
||||
from qa.base import BaseTestCase
|
||||
|
||||
|
||||
class ContribRuleTests(BaseTestCase):
|
||||
""" Integration tests for contrib rules."""
|
||||
"""Integration tests for contrib rules."""
|
||||
|
||||
def test_contrib_rules(self):
|
||||
self.create_simple_commit("WIP Thi$ is å title\n\nMy bödy that is a bit longer than 20 chars")
|
||||
output = gitlint("--contrib", "contrib-title-conventional-commits,CC1",
|
||||
_cwd=self.tmp_git_repo, _tty_in=True, _ok_code=[3])
|
||||
output = gitlint(
|
||||
"--contrib", "contrib-title-conventional-commits,CC1", _cwd=self.tmp_git_repo, _tty_in=True, _ok_code=[3]
|
||||
)
|
||||
self.assertEqualStdout(output, self.get_expected("test_contrib/test_contrib_rules_1"))
|
||||
|
||||
def test_contrib_rules_with_config(self):
|
||||
self.create_simple_commit("WIP Thi$ is å title\n\nMy bödy that is a bit longer than 20 chars")
|
||||
output = gitlint("--contrib", "contrib-title-conventional-commits,CC1",
|
||||
"-c", "contrib-title-conventional-commits.types=föo,bår",
|
||||
_cwd=self.tmp_git_repo, _tty_in=True, _ok_code=[3])
|
||||
output = gitlint(
|
||||
"--contrib",
|
||||
"contrib-title-conventional-commits,CC1",
|
||||
"-c",
|
||||
"contrib-title-conventional-commits.types=föo,bår",
|
||||
_cwd=self.tmp_git_repo,
|
||||
_tty_in=True,
|
||||
_ok_code=[3],
|
||||
)
|
||||
self.assertEqualStdout(output, self.get_expected("test_contrib/test_contrib_rules_with_config_1"))
|
||||
|
||||
def test_invalid_contrib_rules(self):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue