Browse Source

Added the other basic tests' headers in the test_ledatasource.py file

Roland Haroutiounian 9 years ago
parent
commit
8ab4f41bec
1 changed files with 12 additions and 0 deletions
  1. 12
    0
      leobject/test/test_ledatasourcesql.py

+ 12
- 0
leobject/test/test_ledatasourcesql.py View File

@@ -20,3 +20,15 @@ class _LeDataSourceTestCase(TestCase):
20 20
         self.assertIsInstance(obj=self.mydatasource, cls=LeDataSourceSQL, msg='A %s object was expected, %s obtained instead' % (LeDataSourceSQL.__class__, self.mydatasource.__class__))
21 21
         self.assertIsNotNone(obj=self.mydatasource.connection, msg='The database connection cursor could not be instanciated')
22 22
         self.assertIsInstance(self.mydatasource.connection, Database, msg='%s object was expected for the connection cursor, %s obtained instead' % (Database.__class__, self.mydatasource.connection.__class__))
23
+
24
+    def test_insert(self):
25
+        pass
26
+
27
+    def test_get(self):
28
+        pass
29
+
30
+    def test_update(self):
31
+        pass
32
+
33
+    def test_delete(self):
34
+        pass

Loading…
Cancel
Save