[pypy-svn] r44918 - pypy/dist/pypy/lang/scheme/test

fijal at codespeak.net fijal at codespeak.net
Wed Jul 11 10:08:49 CEST 2007


Author: fijal
Date: Wed Jul 11 10:08:48 2007
New Revision: 44918

Modified:
   pypy/dist/pypy/lang/scheme/test/test_interactive.py
Log:
Add another test (just because)


Modified: pypy/dist/pypy/lang/scheme/test/test_interactive.py
==============================================================================
--- pypy/dist/pypy/lang/scheme/test/test_interactive.py	(original)
+++ pypy/dist/pypy/lang/scheme/test/test_interactive.py	Wed Jul 11 10:08:48 2007
@@ -30,3 +30,10 @@
         child.sendline("(+ 1 2)")
         child.expect("3W")
 
+    def test_multiline(self):
+        child = self.spawn()
+        child.expect("-> ")
+        child.sendline("(+ 1")
+        child.expect(".. ")
+        child.sendline(" 2)")
+        child.expect("3W")



More information about the Pypy-commit mailing list