Mercurial > pymonkey
diff test_pymonkey.py @ 0:21aa6e3abb49
Origination.
author | Atul Varma <varmaa@toolness.com> |
---|---|
date | Sun, 28 Jun 2009 12:02:22 -0700 |
parents | |
children | 2f6bdc9f7245 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/test_pymonkey.py Sun Jun 28 12:02:22 2009 -0700 @@ -0,0 +1,9 @@ +import unittest +import pymonkey + +class PymonkeyTests(unittest.TestCase): + def test_evaluate(self): + pymonkey.evaluate('1+3', '<string>', 1) + +if __name__ == '__main__': + unittest.main()