"""Tests for general validation module.""" import pytest from assets.validation import input_value_validator @pytest.mark.parametrize( "from_uid, to_uid, expected_result", [ (1, 1, False), (1, 2, True), ], ) def test_check_self_copy(from_uid: int, to_uid: int, expected_result: bool) -> None: """Test is_not_self_copy calls.""" assert input_value_validator.is_not_self_copy(from_uid, to_uid) == expected_result