Beispiel #1
0
def test_add():
    obj1 = Scan(contents=[(10, 20), (30, 40)])
    obj2 = Scan(contents=[(50, 60), (70, 80)])
    obj3 = obj1 + obj2
    assert [(10, 20), (30, 40), (50, 60), (70, 80)] == obj3.contents
    assert obj1 is not obj3
    assert obj1.contents is not obj3.contents
    assert obj2 is not obj3
    assert obj2.contents is not obj3.contents
Beispiel #2
0
 def test_add(self):
     obj1 = Scan(contents=[(10, 20), (30, 40)])
     obj2 = Scan(contents=[(50, 60), (70, 80)])
     obj3 = obj1 + obj2
     self.assertEqual([(10, 20), (30, 40), (50, 60), (70, 80)],
                      obj3.contents)
     self.assertIsNot(obj1, obj3)
     self.assertIsNot(obj1.contents, obj3.contents)
     self.assertIsNot(obj2, obj3)
     self.assertIsNot(obj2.contents, obj3.contents)
Beispiel #3
0
def test_radd():
    obj1 = Scan(contents=[(10, 20), (30, 40)])
    assert obj1 is not sum([obj1])  # will call 0 + obj1
    assert obj1 == sum([obj1])
Beispiel #4
0
def test_repr():
    obj = Scan()
    repr(obj)
Beispiel #5
0
def test_init_contents_not_same_object():
    contents = [[10, 20], [30, 40]]
    obj = Scan(contents=contents)
    assert contents is not obj.contents
    assert contents[0] is not obj.contents[0]
    assert contents[1] is not obj.contents[1]
Beispiel #6
0
def test_init(kwargs, expected_contents):
    obj = Scan(**kwargs)
    np.testing.assert_equal(expected_contents, obj.contents)
Beispiel #7
0
 def test_copy(self):
     obj1 = Scan(contents=[(10, 20), (30, 40)])
     copy1 = copy.copy(obj1)
     self.assertEqual(obj1, copy1)
     self.assertIsNot(obj1, copy1)
     self.assertIsNot(obj1.contents, copy1.contents)
Beispiel #8
0
 def test_init_val(self):
     obj = Scan(val=(10, 20))
     self.assertEqual([(10, 20)], obj.contents)
Beispiel #9
0
 def test_radd(self):
     obj1 = Scan(contents=[(10, 20), (30, 40)])
     self.assertIsNot(obj1, sum([obj1]))  # will call 0 + obj1
     self.assertEqual(obj1, sum([obj1]))
Beispiel #10
0
 def test_repr(self):
     obj = Scan()
     repr(obj)
Beispiel #11
0
 def test_init_contents_not_same_object(self):
     contents = [[10, 20], [30, 40]]
     obj = Scan(contents=contents)
     self.assertIsNot(contents, obj.contents)
     self.assertIsNot(contents[0], obj.contents[0])
     self.assertIsNot(contents[1], obj.contents[1])
Beispiel #12
0
 def test_init_contents(self):
     obj = Scan(contents=[(10, 20), (30, 40)])
     self.assertEqual([(10, 20), (30, 40)], obj.contents)
Beispiel #13
0
 def test_init_weight(self):  # no effect
     obj = Scan(val=(10, 20), weight=2)
     self.assertEqual([(10, 20)], obj.contents)
Beispiel #14
0
def test_radd_raise():
    obj1 = Scan(contents=[(10, 20), (30, 40)])
    with pytest.raises(TypeError):
        1 + obj1
Beispiel #15
0
 def test_radd_raise(self):
     obj1 = Scan(contents=[(10, 20), (30, 40)])
     self.assertRaises(TypeError, obj1.__radd__, 1)
Beispiel #16
0
def test_copy():
    obj1 = Scan(contents=[(10, 20), (30, 40)])
    copy1 = copy.copy(obj1)
    assert obj1 == copy1
    assert obj1 is not copy1
    assert obj1.contents is not copy1.contents
Beispiel #17
0
 def test_init(self):
     obj = Scan()
     np.testing.assert_equal([], obj.contents)