[Mpuls-commits] r1251 - in wasko/branches/2.0/mpulsweb: . tests tests/functional

scm-commit@wald.intevation.org scm-commit at wald.intevation.org
Thu Feb 4 18:06:36 CET 2010


Author: torsten
Date: 2010-02-04 18:06:35 +0100 (Thu, 04 Feb 2010)
New Revision: 1251

Added:
   wasko/branches/2.0/mpulsweb/tests/
   wasko/branches/2.0/mpulsweb/tests/__init__.py
   wasko/branches/2.0/mpulsweb/tests/functional/
   wasko/branches/2.0/mpulsweb/tests/functional/__init__.py
   wasko/branches/2.0/mpulsweb/tests/functional/test_auth.py
   wasko/branches/2.0/mpulsweb/tests/functional/test_mpuls.py
Log:
Added test dir for the base	

* mpulsweb/tests
  mpulsweb/tests/functional
  mpulsweb/tests/functional/__init__.py
  mpulsweb/tests/__init__.py
- Diese und die folgenden Zeilen werden ignoriert --

A    tests
A    tests/functional
A    tests/functional/__init__.py
A    tests/functional/test_mpuls.py
A    tests/functional/test_auth.py
A    tests/__init__.py


Added: wasko/branches/2.0/mpulsweb/tests/__init__.py
===================================================================
--- wasko/branches/2.0/mpulsweb/tests/__init__.py	2010-02-04 16:06:25 UTC (rev 1250)
+++ wasko/branches/2.0/mpulsweb/tests/__init__.py	2010-02-04 17:06:35 UTC (rev 1251)
@@ -0,0 +1 @@
+#

Added: wasko/branches/2.0/mpulsweb/tests/functional/__init__.py
===================================================================
--- wasko/branches/2.0/mpulsweb/tests/functional/__init__.py	2010-02-04 16:06:25 UTC (rev 1250)
+++ wasko/branches/2.0/mpulsweb/tests/functional/__init__.py	2010-02-04 17:06:35 UTC (rev 1251)
@@ -0,0 +1 @@
+#

Added: wasko/branches/2.0/mpulsweb/tests/functional/test_auth.py
===================================================================
--- wasko/branches/2.0/mpulsweb/tests/functional/test_auth.py	2010-02-04 16:06:25 UTC (rev 1250)
+++ wasko/branches/2.0/mpulsweb/tests/functional/test_auth.py	2010-02-04 17:06:35 UTC (rev 1251)
@@ -0,0 +1,7 @@
+from mpulsweb.tests import *
+
+class TestAuthController(TestController):
+
+    def test_index(self):
+        response = self.app.get(url(controller='auth', action='index'))
+        # Test response...

Added: wasko/branches/2.0/mpulsweb/tests/functional/test_mpuls.py
===================================================================
--- wasko/branches/2.0/mpulsweb/tests/functional/test_mpuls.py	2010-02-04 16:06:25 UTC (rev 1250)
+++ wasko/branches/2.0/mpulsweb/tests/functional/test_mpuls.py	2010-02-04 17:06:35 UTC (rev 1251)
@@ -0,0 +1,7 @@
+from mpulsweb.tests import *
+
+class TestMpulsController(TestController):
+
+    def test_index(self):
+        response = self.app.get(url(controller='mpuls', action='index'))
+        # Test response...



More information about the Mpuls-commits mailing list