Exemplo n.º 1
0
 def test_function_when_n_bigger_than_three(self):
     result = nth_fib_lists([1, 2], [3, 4], 4)
     self.assertEqual([1, 2, 3, 4, 3, 4], result)
Exemplo n.º 2
0
 def test_if_function_returns_length_of_list(self):
     self.assertEqual([], nth_fib_lists([], [], 4))
Exemplo n.º 3
0
 def test_if_function_returns_B_when_n_equals_two(self):
     result = nth_fib_lists([1, 2], [3, 4], 2)
     self.assertEqual([3, 4], result)