def test_func2(): # FIXME #exp = 0.0 #obs = basics.func2([13], [14])[0][0] exp = [] obs = basics.func2([], []) assert_equal(len(exp), len(obs))
def test_func2(): # FIXME #exp = [[0.0,0.0]] #obs = basics.func2([13], [14,15]) #obs2 = basics.func2(b=[14,15], a=[13]) #assert_equal(exp, obs) exp = [] obs = basics.func2([], []) assert_equal(len(exp), len(obs))