def test_parse_column_expression_without_type(self):
     self.assertEquals(
         ('foo', None),
         parse_column_string('foo')
     )
Example #2
0
 def test_parse_column_expression_without_type(self):
     self.assertEquals(('foo', None), parse_column_string('foo'))
 def test_parse_column_expression(self):
     self.assertEquals(
         ('foo', 'bar.baz'),
         parse_column_string('foo (bar.baz)')
     )
Example #4
0
 def test_parse_column_expression(self):
     self.assertEquals(('foo', 'bar.baz'),
                       parse_column_string('foo (bar.baz)'))