summaryrefslogtreecommitdiff
path: root/test/dialect/test_sqlite.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/dialect/test_sqlite.py')
-rw-r--r--test/dialect/test_sqlite.py14
1 files changed, 0 insertions, 14 deletions
diff --git a/test/dialect/test_sqlite.py b/test/dialect/test_sqlite.py
index 2413c12e8..b99f58bd2 100644
--- a/test/dialect/test_sqlite.py
+++ b/test/dialect/test_sqlite.py
@@ -353,20 +353,6 @@ class DialectTest(TestBase, AssertsExecutionResults):
finally:
meta.drop_all()
- def test_set_isolation_level(self):
- """Test setting the read uncommitted/serializable levels"""
-
- eng = create_engine(testing.db.url)
- eq_(eng.execute('PRAGMA read_uncommitted').scalar(), 0)
- eng = create_engine(testing.db.url,
- isolation_level='READ UNCOMMITTED')
- eq_(eng.execute('PRAGMA read_uncommitted').scalar(), 1)
- eng = create_engine(testing.db.url,
- isolation_level='SERIALIZABLE')
- eq_(eng.execute('PRAGMA read_uncommitted').scalar(), 0)
- assert_raises(exc.ArgumentError, create_engine, testing.db.url,
- isolation_level='FOO')
-
def test_create_index_with_schema(self):
"""Test creation of index with explicit schema"""