mirror of
https://github.com/donnemartin/interactive-coding-challenges.git
synced 2024-03-22 13:11:13 +08:00
25 lines
741 B
Python
25 lines
741 B
Python
from nose.tools import assert_equal
|
|
|
|
|
|
class TestFindMagicIndex(object):
|
|
|
|
def test_find_magic_index(self):
|
|
magic_index = MagicIndex()
|
|
assert_equal(magic_index.find_magic_index(None), -1)
|
|
assert_equal(magic_index.find_magic_index([]), -1)
|
|
array = [-4, -2, 2, 6, 6, 6, 6, 10]
|
|
assert_equal(magic_index.find_magic_index(array), 2)
|
|
array = [-4, -2, 1, 6, 6, 6, 6, 10]
|
|
assert_equal(magic_index.find_magic_index(array), 6)
|
|
array = [-4, -2, 1, 6, 6, 6, 7, 10]
|
|
assert_equal(magic_index.find_magic_index(array), -1)
|
|
print('Success: test_find_magic')
|
|
|
|
|
|
def main():
|
|
test = TestFindMagicIndex()
|
|
test.test_find_magic_index()
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main() |