def test_no_match(number, expected):
    assert expected == foobarquix(number)
def test_multiples_matches(number, expected):
    assert expected == foobarquix(number)
def test_only_contains_once_three_or_five_or_seven(number, expected):
    assert expected == foobarquix(number)
def test_only_divisible_once_by_a_number_and_contain_it(number, expected):
    assert expected == foobarquix(number)
def test_is_divisible_only_by_three_or_five_or_seven(number, expected):
    assert expected == foobarquix(number)