Advertisement
Guest User

Untitled

a guest
Jan 6th, 2021
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.19 KB | None | 0 0
  1. from unittest import patch, TestCase
  2.  
  3. localserver = partial(funkcja, local=True)
  4.  
  5. @patch('dupa.kupa.chuj', localserver)
  6. class TestFooBar(TestCase):
  7.     def test_whatever(self, lokalnie):
  8.         ...
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement