interactive-coding-challenges/recursion_dynamic/fibonacci/test_fibonacci.py
2017-01-22 12:06:58 -05:00

24 lines
517 B
Python

from nose.tools import assert_equal
class TestFib(object):
def test_fib(self, func):
result = []
expected = [0, 1, 1, 2, 3, 5, 8, 13, 21, 34]
for i in range(len(expected)):
result.append(func(i))
assert_equal(result, expected)
print('Success: test_fib')
def main():
test = TestFib()
math = Math()
test.test_fib(math.fib_recursive)
test.test_fib(math.fib_dynamic)
test.test_fib(math.fib_iterative)
if __name__ == '__main__':
main()