mirror of
https://github.com/python/cpython.git
synced 2025-10-02 13:22:19 +00:00
[3.11] gh-106368: Increase Argument Clinic test coverage (GH-106389) (#106391)
Add:
- test_disallowed_gropuing__no_matching_bracket
- test_double_slash
(cherry picked from commit 3406f8cce5
)
Co-authored-by: Erlend E. Aasland <erlend@python.org>
This commit is contained in:
parent
76889641e6
commit
3cc5c4a073
1 changed files with 24 additions and 0 deletions
|
@ -729,6 +729,18 @@ class ClinicParserTest(TestCase):
|
||||||
)
|
)
|
||||||
self.assertIn(msg, out)
|
self.assertIn(msg, out)
|
||||||
|
|
||||||
|
def test_disallowed_grouping__no_matching_bracket(self):
|
||||||
|
out = self.parse_function_should_fail("""
|
||||||
|
module foo
|
||||||
|
foo.empty_group
|
||||||
|
param: int
|
||||||
|
]
|
||||||
|
group2: int
|
||||||
|
]
|
||||||
|
""")
|
||||||
|
msg = "Function empty_group has a ] without a matching [."
|
||||||
|
self.assertIn(msg, out)
|
||||||
|
|
||||||
def test_no_parameters(self):
|
def test_no_parameters(self):
|
||||||
function = self.parse_function("""
|
function = self.parse_function("""
|
||||||
module foo
|
module foo
|
||||||
|
@ -808,6 +820,18 @@ class ClinicParserTest(TestCase):
|
||||||
)
|
)
|
||||||
self.assertIn(msg, out)
|
self.assertIn(msg, out)
|
||||||
|
|
||||||
|
def test_double_slash(self):
|
||||||
|
out = self.parse_function_should_fail("""
|
||||||
|
module foo
|
||||||
|
foo.bar
|
||||||
|
a: int
|
||||||
|
/
|
||||||
|
b: int
|
||||||
|
/
|
||||||
|
""")
|
||||||
|
msg = "Function bar uses '/' more than once."
|
||||||
|
self.assertIn(msg, out)
|
||||||
|
|
||||||
def test_mix_star_and_slash(self):
|
def test_mix_star_and_slash(self):
|
||||||
out = self.parse_function_should_fail("""
|
out = self.parse_function_should_fail("""
|
||||||
module foo
|
module foo
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue