def test_should_get_4_as_the_number_of_factors_of_15(self): assert_equals(numbers_of_factors(15), 4)
def test_should_get_5_as_the_number_of_factors_of_28(self): assert_equals(numbers_of_factors(28), 6)