changeset 20:203d6a15652c

Added a number of scaffolding modules. All of these modules are either empty or contain trivial scaffolding code so that the rest of the code in the repository can be imported. It's now also possible to run 'nosetests --with-doctest' from the root directory, which will find 20 assorted doctests and unit tests, all of which currently pass except one.
author Atul Varma <varmaa@toolness.com>
date Fri, 22 Feb 2008 18:08:36 -0600
parents 422dc98d3080
children 98931006fbfb
files enso/graphics/font.py enso/graphics/textlayout.py enso/graphics/transparentwindow.py enso/input/__init__.py enso/ui/commands/__init__.py enso/ui/commands/suggestions.py
diffstat 3 files changed, 12 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/enso/graphics/transparentwindow.py	Fri Feb 22 18:08:36 2008 -0600
@@ -0,0 +1,2 @@
+class TransparentWindow( object ):
+    pass
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/enso/input/__init__.py	Fri Feb 22 18:08:36 2008 -0600
@@ -0,0 +1,6 @@
+# TODO: Everything in this file is scaffolding.
+
+KEYCODE_SPACE = 1
+
+class InputManager( object ):
+    pass
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/enso/ui/commands/suggestions.py	Fri Feb 22 18:08:36 2008 -0600
@@ -0,0 +1,4 @@
+# TODO: Everything in this file is scaffolding.
+
+class AutoCompletion( object ):
+    pass