Last active
December 11, 2015 09:05
-
-
Save BeyondEvil/f14d15fa1202cade1d0a 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
@pytest.fixture() | |
def user(request): | |
user_name = request.param.get('name') | |
//do something | |
@pytest.fixture() | |
def account(request): | |
account_name = request.param.get('name') | |
//do something | |
@pytest.mark.parametrize('user', [{'name': 'jimbob'}]) | |
@pytest.mark.parametrize('account', [{'name': 'jimbobs account'}]) | |
@pytest.fixture() | |
def project(request, user, account): | |
//do something |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment