Advertisement
Guest User

Untitled

a guest
May 20th, 2020
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.13 KB | None | 0 0
  1. import pytest
  2.  
  3.  
  4. @pytest.fixture
  5. def fixture():
  6.     a = 1
  7.     yield a
  8.  
  9.  
  10. def test_1(fixture):
  11.     a = fixture
  12.     assert a == 1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement