def testListCreation(): l = ref.scalarList(4, 1.) eq_(len(l), 4) eq_(l[2], 1.)
def testListIteration(): l = ref.scalarList(4, 1.) for i in l: eq_(i, 1.)
def testListCreationFails(): l = ref.scalarList(4, 1)
def testListCreationFails(): l=ref.scalarList(4,1)
def testListCreation(): l=ref.scalarList(4,1.) eq_(len(l),4) eq_(l[2],1.)
def testListIteration(): l=ref.scalarList(4,1.) for i in l: eq_(i,1.)