Last active
May 1, 2020 18:45
-
-
Save olofk/973bf74a640105137a347f797935c93e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| def ass(a,b): | |
| assert a == b |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import pytest | |
| def myass(a,b): | |
| assert a == b | |
| def test_good(): | |
| a = 'one thing' | |
| b = 'different thing' | |
| myass(a,b) | |
| def test_bad(): | |
| from other_file import ass | |
| a = 'one thing' | |
| b = 'different thing' | |
| ass(a,b) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment