Beispiel #1
0
 def test_var(self):
     x = var.a.b.c
     eq_(preparse(list(x)), (varcache('a'), varcache('b'), varcache('c')))
Beispiel #2
0
 def test_var(self):
   x = var.a.b.c
   eq_(preparse(list(x)), 
       (varcache('a'),varcache('b'),varcache('c')))
Beispiel #3
0
 def test_v(self):
     x = v.a
     eq_(x.__class__, _VarSymbol)
     eq_(preparse(x), varcache('a'))
Beispiel #4
0
 def test_v(self):
   x = v.a
   eq_(x.__class__, _VarSymbol)
   eq_(preparse(x), varcache('a'))