コード例 #1
0
 def test_var(self):
     x = var.a.b.c
     eq_(preparse(list(x)), (varcache('a'), varcache('b'), varcache('c')))
コード例 #2
0
ファイル: testdinpy.py プロジェクト: chaosim/dao
 def test_var(self):
   x = var.a.b.c
   eq_(preparse(list(x)), 
       (varcache('a'),varcache('b'),varcache('c')))
コード例 #3
0
 def test_v(self):
     x = v.a
     eq_(x.__class__, _VarSymbol)
     eq_(preparse(x), varcache('a'))
コード例 #4
0
ファイル: testdinpy.py プロジェクト: chaosim/dao
 def test_v(self):
   x = v.a
   eq_(x.__class__, _VarSymbol)
   eq_(preparse(x), varcache('a'))