Example #1
0
 def test_add_05(self):
     "add test #05"
     y1 = larry([1, 2])
     y2 = larry([1, 2, 3])
     actual = add(y1, y2, misstwo=0)
     desired = larry([2, 4])
     msg = "add failed"
     ale(actual, desired, msg, original=y1)
     ale(actual, desired, msg, original=y2)
Example #2
0
 def test_add_07(self):
     "add test #07"
     y1 = larry([1, 2])
     y2 = larry([1, 2, 3])
     actual = add(y1, y2, join='outer', missone=0)
     desired = larry([2, 4, 3], dtype=float)
     msg = "add failed"
     ale(actual, desired, msg, original=y1)
     ale(actual, desired, msg, original=y2)
Example #3
0
 def test_add_03(self):
     "add test #03"
     y1 = larry([1, 2])
     y2 = larry([1, 2, 3])
     actual = add(y1, y2, join='inner', missone=0)
     desired = larry([2, 4])
     msg = "add failed"
     ale(actual, desired, msg, original=y1)
     ale(actual, desired, msg, original=y2)
Example #4
0
 def test_add_18(self):
     "add test #18"
     y1 = larry([1, nan, nan, 1])
     y2 = larry([1, 1,   nan, 1], [[0, 1, 2, 'a']])
     actual = add(y1, y2, join='outer')
     desired = larry([2, nan, nan, nan, nan], [[0, 1, 2, 3, 'a']])
     msg = "add failed"
     ale(actual, desired, msg, original=y1)
     ale(actual, desired, msg, original=y2)
Example #5
0
 def test_add_19(self):
     "add test #19"
     y1 = larry([1, nan, nan, 1])
     y2 = larry([1, 1,   nan, 1], [[0, 1, 2, 9]])
     actual = add(y1, y2, join='outer', missone=0)
     desired = larry([2, 1, nan, 1, 1], [[0, 1, 2, 3, 9]])
     msg = "add failed"
     ale(actual, desired, msg, original=y1)
     ale(actual, desired, msg, original=y2)
Example #6
0
 def test_add_02(self):
     "add test #02"
     y1 = larry([1, 2])
     y2 = larry([1, 2, 3])
     actual = add(y1, y2, join='inner')
     desired = larry([2, 4])
     msg = "add failed"
     ale(actual, desired, msg, original=y1)
     ale(actual, desired, msg, original=y2)
Example #7
0
 def test_add_15(self):
     "add test #15"
     y1 = larry([1, 2])
     y2 = larry([1, 2, 3])
     actual = add(y1, y2, join='right', missone=0, misstwo=0)
     desired = larry([2, 4, 3], dtype=float)
     msg = "add failed"
     ale(actual, desired, msg, original=y1)
     ale(actual, desired, msg, original=y2)
Example #8
0
 def test_add_16(self):
     "add test #16"
     y1 = larry([1, 2])
     y2 = larry([1, 2, 3])
     actual = add(y1, y2, join='right', misstwo=0)
     desired = larry([2, 4, nan])
     msg = "add failed"
     ale(actual, desired, msg, original=y1)
     ale(actual, desired, msg, original=y2)
Example #9
0
 def test_add_10(self):
     "add test #10"
     y1 = larry([1, 2])
     y2 = larry([1, 2, 3])
     actual = add(y1, y2, join='left')
     desired = larry([2, 4])
     msg = "add failed"
     ale(actual, desired, msg, original=y1)
     ale(actual, desired, msg, original=y2)
Example #10
0
 def test_add_12(self):
     "add test #12"
     y1 = larry([1, 2])
     y2 = larry([1, 2, 3])
     actual = add(y1, y2, join='left', missone=0, misstwo=0)
     desired = larry([2, 4])
     msg = "add failed"
     ale(actual, desired, msg, original=y1)
     ale(actual, desired, msg, original=y2)
Example #11
0
 def test_add_07(self):
     "add test #07"
     y1 = larry([1, 2])
     y2 = larry([1, 2, 3])
     actual = add(y1, y2, join='outer', missone=0)
     desired = larry([2, 4, 3], dtype=float)
     msg = "add failed"
     ale(actual, desired, msg, original=y1)
     ale(actual, desired, msg, original=y2)
Example #12
0
 def test_add_06(self):
     "add test #06"
     y1 = larry([1, 2])
     y2 = larry([1, 2, 3])
     actual = add(y1, y2, join='outer')
     desired = larry([2, 4, nan])
     msg = "add failed"
     ale(actual, desired, msg, original=y1)
     ale(actual, desired, msg, original=y2)
Example #13
0
 def test_add_05(self):
     "add test #05"
     y1 = larry([1, 2])
     y2 = larry([1, 2, 3])
     actual = add(y1, y2, misstwo=0)
     desired = larry([2, 4])
     msg = "add failed"
     ale(actual, desired, msg, original=y1)
     ale(actual, desired, msg, original=y2)
Example #14
0
 def test_add_11(self):
     "add test #11"
     y1 = larry([1, 2])
     y2 = larry([1, 2, 3])
     actual = add(y1, y2, join='left', missone=0)
     desired = larry([2, 4])
     msg = "add failed"
     ale(actual, desired, msg, original=y1)
     ale(actual, desired, msg, original=y2)
Example #15
0
 def test_add_16(self):
     "add test #16"
     y1 = larry([1, 2])
     y2 = larry([1, 2, 3])
     actual = add(y1, y2, join='right', misstwo=0)
     desired = larry([2, 4, nan])
     msg = "add failed"
     ale(actual, desired, msg, original=y1)
     ale(actual, desired, msg, original=y2)
Example #16
0
 def test_add_15(self):
     "add test #15"
     y1 = larry([1, 2])
     y2 = larry([1, 2, 3])
     actual = add(y1, y2, join='right', missone=0, misstwo=0)
     desired = larry([2, 4, 3], dtype=float)
     msg = "add failed"
     ale(actual, desired, msg, original=y1)
     ale(actual, desired, msg, original=y2)
Example #17
0
 def test_add_17(self):
     "add test #17"
     y1 = larry([1, nan, nan, 1])
     y2 = larry([1, 1, nan, 1], [[0, 1, 2, 'a']])
     actual = add(y1, y2)
     desired = larry([2, nan, nan], [[0, 1, 2]])
     msg = "add failed"
     ale(actual, desired, msg, original=y1)
     ale(actual, desired, msg, original=y2)
Example #18
0
 def test_add_17(self):
     "add test #17"
     y1 = larry([1, nan, nan, 1])
     y2 = larry([1, 1,   nan, 1], [[0, 1, 2, 'a']])
     actual = add(y1, y2)
     desired = larry([2, nan, nan], [[0, 1, 2]])
     msg = "add failed"
     ale(actual, desired, msg, original=y1)
     ale(actual, desired, msg, original=y2)
Example #19
0
 def test_add_19(self):
     "add test #19"
     y1 = larry([1, nan, nan, 1])
     y2 = larry([1, 1, nan, 1], [[0, 1, 2, 'a']])
     actual = add(y1, y2, join='outer', missone=0)
     desired = larry([2, 1, nan, 1, 1], [[0, 1, 2, 3, 'a']])
     msg = "add failed"
     ale(actual, desired, msg, original=y1)
     ale(actual, desired, msg, original=y2)
Example #20
0
 def test_add_20(self):
     "add test #20"
     y1 = larry([1, nan, nan, 1])
     y2 = larry([1, 1,   nan, 1], [[0, 1, 2, 9]])
     actual = add(y1, y2, join='outer', missone=0, misstwo=0)
     desired = larry([2, 1, 0, 1, 1], [[0, 1, 2, 3, 9]], dtype=float)
     msg = "add failed"
     ale(actual, desired, msg, original=y1)
     ale(actual, desired, msg, original=y2)
Example #21
0
 def test_add_20(self):
     "add test #20"
     y1 = larry([1, nan, nan, 1])
     y2 = larry([1, 1, nan, 1], [[0, 1, 2, 'a']])
     actual = add(y1, y2, join='outer', missone=0, misstwo=0)
     desired = larry([2, 1, 0, 1, 1], [[0, 1, 2, 3, 'a']], dtype=float)
     msg = "add failed"
     ale(actual, desired, msg, original=y1)
     ale(actual, desired, msg, original=y2)
Example #22
0
 def test_add_04(self):
     "add test #04"
     y1 = larry([1, 2])
     y2 = larry([1, 2, 3])
     actual = add(y1, y2, join='inner', missone=0, misstwo=0)
     desired = larry([2, 4])
     msg = "add failed"
     ale(actual, desired, msg, original=y1)
     ale(actual, desired, msg, original=y2)
Example #23
0
 def test_add_18(self):
     "add test #18"
     y1 = larry([1, nan, nan, 1])
     y2 = larry([1, 1, nan, 1], [[0, 1, 2, 9]])
     actual = add(y1, y2, join='outer')
     desired = larry([2, nan, nan, nan, nan], [[0, 1, 2, 3, 9]])
     msg = "add failed"
     ale(actual, desired, msg, original=y1)
     ale(actual, desired, msg, original=y2)