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

scm-commit@wald.intevation.org scm-commit at wald.intevation.org
Fri Mar 26 14:46:44 CET 2010


Author: torsten
Date: 2010-03-26 14:46:41 +0100 (Fri, 26 Mar 2010)
New Revision: 2232

Modified:
   wasko/branches/2.0/ChangeLog
   wasko/branches/2.0/mpulsweb/tests/functional/test_administration.py
   wasko/branches/2.0/mpulsweb/tests/functional/test_appointment.py
   wasko/branches/2.0/mpulsweb/tests/functional/test_case.py
   wasko/branches/2.0/mpulsweb/tests/functional/test_case_overview.py
   wasko/branches/2.0/mpulsweb/tests/functional/test_caseappointment.py
   wasko/branches/2.0/mpulsweb/tests/functional/test_casedocument.py
   wasko/branches/2.0/mpulsweb/tests/functional/test_document.py
   wasko/branches/2.0/mpulsweb/tests/functional/test_logbook.py
   wasko/branches/2.0/mpulsweb/tests/functional/test_phase.py
   wasko/branches/2.0/mpulsweb/tests/functional/test_usersettings.py
Log:
Deleted tests under waskaweb. Didn't do anything


Modified: wasko/branches/2.0/ChangeLog
===================================================================
--- wasko/branches/2.0/ChangeLog	2010-03-26 13:45:39 UTC (rev 2231)
+++ wasko/branches/2.0/ChangeLog	2010-03-26 13:46:41 UTC (rev 2232)
@@ -1,6 +1,7 @@
 2010-03-26  Torsten Irländer <torsten.irlaender at intevation.de>
 
 	* README.txt: Hinweise zur Durchführung von node-Tests eingefügt.
+	* mpulsweb/tests/*: Deleted old tests in waskaweb. Didn't do anything.
 
 2010-03-26  Bernhard Herzog  <bh at intevation.de>
 

Modified: wasko/branches/2.0/mpulsweb/tests/functional/test_administration.py
===================================================================
--- wasko/branches/2.0/mpulsweb/tests/functional/test_administration.py	2010-03-26 13:45:39 UTC (rev 2231)
+++ wasko/branches/2.0/mpulsweb/tests/functional/test_administration.py	2010-03-26 13:46:41 UTC (rev 2232)
@@ -21,10 +21,10 @@
 # within the programme Kompetenzagenturen (Durchfuehrungsphase) funded by
 # the Bundesministerium fuer Familie, Senioren, Frauen und Jugend and 
 # European Social Fund resources.
-from jmdweb.tests import *
+from mpulsweb.tests import *
 
 class TestAdministrationController(TestController):
 
     def test_index(self):
-        response = self.app.get(url_for(controller='administration'))
+        response = self.app.get(url(controller='administration'))
         # Test response...

Modified: wasko/branches/2.0/mpulsweb/tests/functional/test_appointment.py
===================================================================
--- wasko/branches/2.0/mpulsweb/tests/functional/test_appointment.py	2010-03-26 13:45:39 UTC (rev 2231)
+++ wasko/branches/2.0/mpulsweb/tests/functional/test_appointment.py	2010-03-26 13:46:41 UTC (rev 2232)
@@ -21,10 +21,10 @@
 # within the programme Kompetenzagenturen (Durchfuehrungsphase) funded by
 # the Bundesministerium fuer Familie, Senioren, Frauen und Jugend and 
 # European Social Fund resources.
-from jmdweb.tests import *
+from mpulsweb.tests import *
 
 class TestAppointmentController(TestController):
 
     def test_index(self):
-        response = self.app.get(url_for(controller='appointment'))
+        response = self.app.get(url(controller='appointment'))
         # Test response...

Modified: wasko/branches/2.0/mpulsweb/tests/functional/test_case.py
===================================================================
--- wasko/branches/2.0/mpulsweb/tests/functional/test_case.py	2010-03-26 13:45:39 UTC (rev 2231)
+++ wasko/branches/2.0/mpulsweb/tests/functional/test_case.py	2010-03-26 13:46:41 UTC (rev 2232)
@@ -21,10 +21,10 @@
 # within the programme Kompetenzagenturen (Durchfuehrungsphase) funded by
 # the Bundesministerium fuer Familie, Senioren, Frauen und Jugend and 
 # European Social Fund resources.
-from jmdweb.tests import *
+from mpulsweb.tests import *
 
 class TestCaseController(TestController):
 
     def test_index(self):
-        response = self.app.get(url_for(controller='case'))
+        response = self.app.get(url(controller='case'))
         # Test response...

Modified: wasko/branches/2.0/mpulsweb/tests/functional/test_case_overview.py
===================================================================
--- wasko/branches/2.0/mpulsweb/tests/functional/test_case_overview.py	2010-03-26 13:45:39 UTC (rev 2231)
+++ wasko/branches/2.0/mpulsweb/tests/functional/test_case_overview.py	2010-03-26 13:46:41 UTC (rev 2232)
@@ -21,10 +21,10 @@
 # within the programme Kompetenzagenturen (Durchfuehrungsphase) funded by
 # the Bundesministerium fuer Familie, Senioren, Frauen und Jugend and 
 # European Social Fund resources.
-from jmdweb.tests import *
+from mpulsweb.tests import *
 
 class TestCaseOverviewController(TestController):
 
     def test_index(self):
-        response = self.app.get(url_for(controller='case_overview'))
+        response = self.app.get(url(controller='case_overview'))
         # Test response...

Modified: wasko/branches/2.0/mpulsweb/tests/functional/test_caseappointment.py
===================================================================
--- wasko/branches/2.0/mpulsweb/tests/functional/test_caseappointment.py	2010-03-26 13:45:39 UTC (rev 2231)
+++ wasko/branches/2.0/mpulsweb/tests/functional/test_caseappointment.py	2010-03-26 13:46:41 UTC (rev 2232)
@@ -1,4 +1,4 @@
-from jmdweb.tests import *
+from mpulsweb.tests import *
 
 class TestCaseappointmentController(TestController):
 

Modified: wasko/branches/2.0/mpulsweb/tests/functional/test_casedocument.py
===================================================================
--- wasko/branches/2.0/mpulsweb/tests/functional/test_casedocument.py	2010-03-26 13:45:39 UTC (rev 2231)
+++ wasko/branches/2.0/mpulsweb/tests/functional/test_casedocument.py	2010-03-26 13:46:41 UTC (rev 2232)
@@ -1,4 +1,4 @@
-from jmdweb.tests import *
+from mpulsweb.tests import *
 
 class TestCasedocumentController(TestController):
 

Modified: wasko/branches/2.0/mpulsweb/tests/functional/test_document.py
===================================================================
--- wasko/branches/2.0/mpulsweb/tests/functional/test_document.py	2010-03-26 13:45:39 UTC (rev 2231)
+++ wasko/branches/2.0/mpulsweb/tests/functional/test_document.py	2010-03-26 13:46:41 UTC (rev 2232)
@@ -21,10 +21,10 @@
 # within the programme Kompetenzagenturen (Durchfuehrungsphase) funded by
 # the Bundesministerium fuer Familie, Senioren, Frauen und Jugend and 
 # European Social Fund resources.
-from jmdweb.tests import *
+from mpulsweb.tests import *
 
 class TestDocumentController(TestController):
 
     def test_index(self):
-        response = self.app.get(url_for(controller='document'))
+        response = self.app.get(url(controller='document'))
         # Test response...

Modified: wasko/branches/2.0/mpulsweb/tests/functional/test_logbook.py
===================================================================
--- wasko/branches/2.0/mpulsweb/tests/functional/test_logbook.py	2010-03-26 13:45:39 UTC (rev 2231)
+++ wasko/branches/2.0/mpulsweb/tests/functional/test_logbook.py	2010-03-26 13:46:41 UTC (rev 2232)
@@ -21,10 +21,10 @@
 # within the programme Kompetenzagenturen (Durchfuehrungsphase) funded by
 # the Bundesministerium fuer Familie, Senioren, Frauen und Jugend and 
 # European Social Fund resources.
-from jmdweb.tests import *
+from mpulsweb.tests import *
 
 class TestLogbookController(TestController):
 
     def test_index(self):
-        response = self.app.get(url_for(controller='logbook'))
+        response = self.app.get(url(controller='logbook'))
         # Test response...

Modified: wasko/branches/2.0/mpulsweb/tests/functional/test_phase.py
===================================================================
--- wasko/branches/2.0/mpulsweb/tests/functional/test_phase.py	2010-03-26 13:45:39 UTC (rev 2231)
+++ wasko/branches/2.0/mpulsweb/tests/functional/test_phase.py	2010-03-26 13:46:41 UTC (rev 2232)
@@ -1,7 +1,7 @@
-from jmdweb.tests import *
+from mpulsweb.tests import *
 
 class TestPhaseController(TestController):
 
     def test_index(self):
-        response = self.app.get(url_for(controller='phase'))
+        response = self.app.get(url(controller='phase'))
         # Test response...

Modified: wasko/branches/2.0/mpulsweb/tests/functional/test_usersettings.py
===================================================================
--- wasko/branches/2.0/mpulsweb/tests/functional/test_usersettings.py	2010-03-26 13:45:39 UTC (rev 2231)
+++ wasko/branches/2.0/mpulsweb/tests/functional/test_usersettings.py	2010-03-26 13:46:41 UTC (rev 2232)
@@ -21,10 +21,10 @@
 # within the programme Kompetenzagenturen (Durchfuehrungsphase) funded by
 # the Bundesministerium fuer Familie, Senioren, Frauen und Jugend and 
 # European Social Fund resources.
-from jmdweb.tests import *
+from mpulsweb.tests import *
 
 class TestUsersettingsController(TestController):
 
     def test_index(self):
-        response = self.app.get(url_for(controller='usersettings'))
+        response = self.app.get(url(controller='usersettings'))
         # Test response...



More information about the Mpuls-commits mailing list