d0df704d8a
added python.path vm arg to startup script fixed infinite loop in unwrap() when displaying sequences of sequences git-svn-id: http://google-refine.googlecode.com/svn/trunk@509 7d457c2a-affb-35e4-300a-418c747d4874
21 lines
479 B
Python
21 lines
479 B
Python
import unittest
|
|
import test.test_support
|
|
|
|
def parrot(**args): pass
|
|
|
|
class FuncSyntaxTest(unittest.TestCase):
|
|
|
|
def test_keywords_before_normal(self):
|
|
self.assertRaises(SyntaxError, eval,
|
|
"parrot(voltage=.5, \'dead\')")
|
|
|
|
def test_dup_keywords(self):
|
|
self.assertRaises(TypeError, eval,
|
|
"complex(imag=4, imag=2)")
|
|
|
|
def test_main():
|
|
test.test_support.run_unittest(FuncSyntaxTest)
|
|
|
|
if __name__ == "__main__":
|
|
test_main()
|