mirror of
https://github.com/donnemartin/interactive-coding-challenges.git
synced 2024-03-22 13:11:13 +08:00
19 lines
418 B
Python
19 lines
418 B
Python
|
from nose.tools import assert_equal, assert_raises
|
||
|
|
||
|
|
||
|
class TestFindDiff(object):
|
||
|
|
||
|
def test_find_diff(self):
|
||
|
solution = Solution()
|
||
|
assert_raises(TypeError, solution.find_diff, None)
|
||
|
assert_equal(solution.find_diff('aaabbcdd', 'abdbacade'), 'e')
|
||
|
print('Success: test_find_diff')
|
||
|
|
||
|
|
||
|
def main():
|
||
|
test = TestFindDiff()
|
||
|
test.test_find_diff()
|
||
|
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
main()
|