Skip to content

Commit

Permalink
another another assertion
Browse files Browse the repository at this point in the history
  • Loading branch information
josephmancuso committed Sep 13, 2018
1 parent 59184e1 commit 1a2d71a
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions tests/helpers/test_dot_notation.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ def test_dot():
assert dot('hey.dot', compile_to="{1}[{.}]") == "hey[dot]"
assert dot('hey.dot.another', compile_to="{1}[{.}]") == "hey[dot][another]"
assert dot('hey.dot.another.and.another', compile_to="{1}[{.}]") == "hey[dot][another][and][another]"
assert dot('hey.dot.another.and.another', compile_to="/{1}[{.}]") == "/hey[dot][another][and][another]"
assert dot('hey.dot', compile_to="{1}/{.}") == "hey/dot"
assert dot('hey.dot.another', compile_to="{1}/{.}") == "hey/dot/another"
assert dot('hey.dot.another', compile_to="{1}/{.}") == "hey/dot/another"
Expand Down

0 comments on commit 1a2d71a

Please sign in to comment.