def test_failure_for_non_even_errors_get_experimental_square(exp_disc): with pytest.raises(ValueError, match="'square_size' must be an even number"): square = get_experimental_square(exp_disc, [17, 19], 7)
def test_experimental_square_size(exp_disc): square = get_experimental_square(exp_disc, [17, 19], 6) assert square.shape[0] == int(6) assert square.shape[1] == int(6)