dataimport/test/test_pgstore.py
changeset 10987 a945fe89b33f
parent 10984 a42f6e7cef35
--- a/dataimport/test/test_pgstore.py	Mon Dec 14 14:54:23 2015 +0100
+++ b/dataimport/test/test_pgstore.py	Mon Dec 14 14:55:10 2015 +0100
@@ -23,7 +23,6 @@
 from logilab.common.testlib import TestCase, unittest_main
 
 from cubicweb.dataimport import pgstore
-from cubicweb.devtools import testlib
 
 
 class CreateCopyFromBufferTC(TestCase):
@@ -90,15 +89,5 @@
         self.assertMultiLineEqual(expected, results.getvalue())
 
 
-class SQLGenObjectStoreTC(testlib.CubicWebTC):
-
-    def test_prepare_insert_entity(self):
-        with self.admin_access.repo_cnx() as cnx:
-            store = pgstore.SQLGenObjectStore(cnx)
-            eid = store.prepare_insert_entity('CWUser', login=u'toto',
-                                              upassword=u'pwd')
-            self.assertIsNotNone(eid)
-
-
 if __name__ == '__main__':
     unittest_main()