interactive-coding-challenges/arrays_strings/unique_chars/test_unique_chars.py

27 lines
660 B
Python
Raw Normal View History

2015-07-04 07:57:24 +08:00
from nose.tools import assert_equal
class TestUniqueChars(object):
2015-07-12 03:34:14 +08:00
def test_unique_chars(self, func):
assert_equal(func(None), False)
2015-07-04 07:57:24 +08:00
assert_equal(func(''), True)
assert_equal(func('foo'), False)
assert_equal(func('bar'), True)
print('Success: test_unique_chars')
2015-07-12 03:34:14 +08:00
2015-07-04 07:57:24 +08:00
def main():
test = TestUniqueChars()
test.test_unique_chars(unique_chars)
try:
test.test_unique_chars(unique_chars_hash)
test.test_unique_chars(unique_chars_inplace)
except NameError:
# Alternate solutions are only defined
# in the solutions file
pass
2015-07-12 03:34:14 +08:00
2015-07-04 07:57:24 +08:00
if __name__ == '__main__':
main()