Skip to content

Commit

Permalink
test(parser): Remove unnessesary test case
Browse files Browse the repository at this point in the history
  • Loading branch information
junghoon-vans committed Dec 27, 2022
1 parent 8009371 commit d5ff7fe
Showing 1 changed file with 0 additions and 14 deletions.
14 changes: 0 additions & 14 deletions tests/utils/test_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,17 +48,3 @@ def test_parse_one_element(parser: Parser):
parser.parse(['key='])
with argparse_error():
parser.parse(['=value'])


def test_parse_more_than_two_element(parser: Parser):
with argparse_error():
parser.parse(['key=value=else'])


def test_parse_many_equals(parser: Parser):
with argparse_error():
parser.parse(['key==value'])
with argparse_error():
parser.parse(['key===value'])
with argparse_error():
parser.parse(['key====value'])

0 comments on commit d5ff7fe

Please sign in to comment.