]> git.llucax.com Git - z.facultad/75.52/sercom.git/commitdiff
Agregar intento de test.
authorLeandro Lucarella <llucax@gmail.com>
Sat, 10 Mar 2007 16:29:02 +0000 (16:29 +0000)
committerLeandro Lucarella <llucax@gmail.com>
Sat, 10 Mar 2007 16:29:02 +0000 (16:29 +0000)
Un intento por agregar testcases. No andaba y desistí de investigar más por
falta de tiempo pero lo subo para que quede.

sercom/tests/test_model.py

index 2b96ca061b3e7237a1a3e4abf834207dd20a61bc..30c160d7112533055952fc16a73b9edec50ff26c 100644 (file)
@@ -5,18 +5,21 @@
 # which is very fast.
 
 from turbogears import testutil, database
-# from sercom.model import YourDataClass, User
+from sercom.model import Curso
 
-database.set_db_uri("sqlite:///:memory:")
+database.set_db_uri("sqlite:///:memory:")
 
-# class TestUser(testutil.DBTest):
-#     def get_model(self):
-#         return User
-#     def test_creation(self):
-#         "Object creation should set the name"
-#         obj = User(user_name = "creosote",
-#                       email_address = "spam@python.not",
-#                       display_name = "Mr Creosote",
-#                       password = "Wafer-thin Mint")
-#         assert obj.display_name == "Mr Creosote"
+class TestCurso(testutil.DBTest):
+    def get_model(self):
+        return Curso
+    def test_creation(self):
+        "Object creation should set the name"
+        c = Curso(anio=2007, cuatrimestre=1, numero=1)
+        assert c.anio == 2007
+        assert c.cuatrimestre == 1
+        assert c.numero == 1
+        assert c.docentes == []
+        assert c.alumnos == []
+        assert c.grupos == []
+        assert c.ejercicios == []