Skip to content

Commit

Permalink
Updated unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
michalszelagsonos authored Apr 9, 2024
1 parent 05548f9 commit 5e091f5
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions tests/TestPBXGenericObject.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ def testParseKey(self):

def testEscapeItem(self):
assert PBXGenericObject._escape("/bin/sh") == "/bin/sh"
assert PBXGenericObject._escape("/bin/sh\n") == '"/bin/sh\\n"'
assert PBXGenericObject._escape("abcdefghijklmnopqrstuvwyz0123456789") == \
"abcdefghijklmnopqrstuvwyz0123456789"
assert PBXGenericObject._escape("some spaces") == '"some spaces"'
Expand Down

0 comments on commit 5e091f5

Please sign in to comment.