dream2nix/tests/unit/test_utils.py

10 lines
264 B
Python
Raw Normal View History

import pytest
import nix_ffi
@pytest.mark.parametrize("expected, versions", [
('3', [ '2', '3', '1' ]),
])
def test_latestVersion(expected, versions):
result = nix_ffi.callNixFunction('dlib.latestVersion', versions=versions)
assert result == expected