|
@@ -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
|