Skip to content

Commit

Permalink
Add even more tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jd-develop committed Jun 26, 2024
1 parent 9285638 commit 99a6bd5
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tests/test_file.noug
Original file line number Diff line number Diff line change
Expand Up @@ -175,6 +175,7 @@ def test_nougaro(print_OK)
## operations
assert ("a" + "b") == 'ab'
assert "a" * 3 == "aaa"
assert 3 * "a" * 3 == 3 * "aaa"

if print_OK then print("OK str ops")

Expand All @@ -185,6 +186,8 @@ def test_nougaro(print_OK)
assert False!=True
assert "a" in "this is an example string"
assert 1 in "123"
assert None in "foo bar none foo"
assert <default> in "foo bar <default>"
assert "bépo" in ["azerty", "qwerty", "bépo"]
assert 1 > 0
assert 1 >= 1
Expand Down

0 comments on commit 99a6bd5

Please sign in to comment.