Florian Bruhin (@the_compiler) 's Twitter Profile
Florian Bruhin

@the_compiler

bsky.app/profile/the-co… mastodon.social/@the_compiler / likes #Python / does #qutebrowser / #pytest trainings: bruhin.software

ID: 30760142

linkhttps://bruhin.software calendar_today13-04-2009 00:29:37

7,7K Tweet

2,2K Followers

1,1K Following

Florian Bruhin (@the_compiler) 's Twitter Profile Photo

#pytest trick: Want to patch a function returning a different value on every call, without full unittest.mock? values = iter(["eggs", "bacon", "spam"]) monkeypatch.setattr(random, "choice", lambda: next(values)) assert random.choice() == "eggs" assert random.choice() == "bacon"