mirror of
https://github.com/donnemartin/interactive-coding-challenges.git
synced 2024-03-22 13:11:13 +08:00
27 lines
680 B
Python
27 lines
680 B
Python
from nose.tools import assert_equal
|
|
|
|
|
|
class TestPermutation(object):
|
|
|
|
def test_permutation(self, func):
|
|
assert_equal(func(None, 'foo'), False)
|
|
assert_equal(func('', 'foo'), False)
|
|
assert_equal(func('Nib', 'bin'), False)
|
|
assert_equal(func('act', 'cat'), True)
|
|
assert_equal(func('a ct', 'ca t'), True)
|
|
print('Success: test_permutation')
|
|
|
|
|
|
def main():
|
|
test = TestPermutation()
|
|
test.test_permutation(permutations)
|
|
try:
|
|
test.test_permutation(permutations_alt)
|
|
except NameError:
|
|
# Alternate solutions are only defined
|
|
# in the solutions file
|
|
pass
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main() |