aboutsummaryrefslogtreecommitdiffstats
path: root/Bugs-Everywhere-Web/beweb/tests
diff options
context:
space:
mode:
authorAaron Bentley <aaron.bentley@utoronto.ca>2006-04-10 22:07:54 -0400
committerAaron Bentley <aaron.bentley@utoronto.ca>2006-04-10 22:07:54 -0400
commit68df9cb4413c2642bac15a940c26e68f9d1391cb (patch)
treecb429c57d740d679a467db3034f93f96ea4e2e33 /Bugs-Everywhere-Web/beweb/tests
parent16ed63b5c8dc2e211a29ba3636cd00b547ceb9aa (diff)
downloadbugseverywhere-68df9cb4413c2642bac15a940c26e68f9d1391cb.tar.gz
Updated beweb to use TurboGears 0.9
Diffstat (limited to 'Bugs-Everywhere-Web/beweb/tests')
-rw-r--r--Bugs-Everywhere-Web/beweb/tests/__init__.py0
-rw-r--r--Bugs-Everywhere-Web/beweb/tests/test_controllers.py16
-rw-r--r--Bugs-Everywhere-Web/beweb/tests/test_model.py24
3 files changed, 40 insertions, 0 deletions
diff --git a/Bugs-Everywhere-Web/beweb/tests/__init__.py b/Bugs-Everywhere-Web/beweb/tests/__init__.py
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/Bugs-Everywhere-Web/beweb/tests/__init__.py
diff --git a/Bugs-Everywhere-Web/beweb/tests/test_controllers.py b/Bugs-Everywhere-Web/beweb/tests/test_controllers.py
new file mode 100644
index 0000000..0c77afe
--- /dev/null
+++ b/Bugs-Everywhere-Web/beweb/tests/test_controllers.py
@@ -0,0 +1,16 @@
+from turbogears import testutil
+from beweb.controllers import Root
+import cherrypy
+
+cherrypy.root = Root()
+
+def test_method():
+ "the index method should return a string called now"
+ import types
+ result = testutil.call(cherrypy.root.index)
+ assert type(result["now"]) == types.StringType
+
+def test_indextitle():
+ "The mainpage should have the right title"
+ testutil.createRequest("/")
+ assert "<TITLE>Welcome to TurboGears</TITLE>" in cherrypy.response.body[0]
diff --git a/Bugs-Everywhere-Web/beweb/tests/test_model.py b/Bugs-Everywhere-Web/beweb/tests/test_model.py
new file mode 100644
index 0000000..5346f8b
--- /dev/null
+++ b/Bugs-Everywhere-Web/beweb/tests/test_model.py
@@ -0,0 +1,24 @@
+# If your project uses a database, you can set up database tests
+# similar to what you see below. Be sure to set the db_uri to
+# an appropriate uri for your testing database. sqlite is a good
+# choice for testing, because you can use an in-memory database
+# which is very fast.
+
+from turbogears import testutil
+#from beweb.model import YourDataClass
+#from turbogears.identity.soprovider import TG_User
+
+# database.set_db_uri("sqlite:///:memory:")
+
+# class testTG_User(testutil.DBTest):
+# def get_model(self):
+# return TG_User
+#
+# def test_creation(self):
+# "Object creation should set the name"
+# obj = TG_User(userId = "creosote",
+# emailAddress = "spam@python.not",
+# displayName = "Mr Creosote",
+# password = "Wafer-thin Mint")
+# assert obj.displayName == "Mr Creosote"
+