Skip to content

Commit

Permalink
Add another test
Browse files Browse the repository at this point in the history
  • Loading branch information
nwiltsie committed Oct 2, 2024
1 parent 5269c31 commit 45997e7
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions tests/test_versionfiles.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,11 @@
"""__version__: str = '1.1.0'""",
"""__version__: str = '2.3.4'""",
),
(
# Python-style with typing, double-quotes
'''__version__:str= "1.1.0"''',
'''__version__:str= "2.3.4"''',
),
(
# Plain string version
'''version = "1.1.0"''',
Expand Down

0 comments on commit 45997e7

Please sign in to comment.