separating the nix fixture from the __init__.py file to increase readability and overview over the existing fixtures Change-Id: I7a86cb729942e83a95b9eabbb09563822f3f9e54
5 lines
128 B
Python
5 lines
128 B
Python
from functional2.testlib.fixtures.nix import Nix
|
|
|
|
def test_trivial_addition(nix: Nix):
|
|
assert nix.eval('1 + 1').json() == 2
|