Ejemplo n.º 1
0
    def test_translate(self):
        # an axis with labels having the object dtype
        a = Axis(np.array(["a0", "a1"], dtype=object), 'a')

        self.assertEqual(a.index('a1'), 1)
        self.assertEqual(a.index('a1 >> A1'), 1)
Ejemplo n.º 2
0
def test_index():
    # an axis with labels having the object dtype
    a = Axis(np.array(["a0", "a1"], dtype=object), 'a')
    assert a.index('a1') == 1
    assert a.index('a1 >> A1') == 1
Ejemplo n.º 3
0
def test_translate():
    # an axis with labels having the object dtype
    a = Axis(np.array(["a0", "a1"], dtype=object), 'a')
    assert a.index('a1') == 1
    assert a.index('a1 >> A1') == 1