Пример #1
0
def testListCreation():
    l = ref.scalarList(4, 1.)
    eq_(len(l), 4)
    eq_(l[2], 1.)
Пример #2
0
def testListIteration():
    l = ref.scalarList(4, 1.)
    for i in l:
        eq_(i, 1.)
Пример #3
0
def testListCreationFails():
    l = ref.scalarList(4, 1)
Пример #4
0
def testListCreationFails():
    l=ref.scalarList(4,1)
Пример #5
0
def testListCreation():
    l=ref.scalarList(4,1.)
    eq_(len(l),4)
    eq_(l[2],1.)
Пример #6
0
def testListIteration():
    l=ref.scalarList(4,1.)
    for i in l:
        eq_(i,1.)