瀏覽代碼

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

Roland Haroutiounian 9 年之前
父節點
當前提交
8ab4f41bec
共有 1 個檔案被更改,包括 12 行新增0 行删除
  1. 12
    0
      leobject/test/test_ledatasourcesql.py

+ 12
- 0
leobject/test/test_ledatasourcesql.py 查看文件

@@ -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…
取消
儲存