Created
January 14, 2014 14:38
-
-
Save public/8419277 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
| import pytest | |
| import os | |
| @pytest.fixture(scope="session") | |
| def wut(request): | |
| return repr(os.urandom(16)) | |
| def test_a(wut): | |
| print wut | |
| def test_b(wut): | |
| print wut | |
| def test_c(wut): | |
| print wut |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment