mirror of
https://github.com/django/django.git
synced 2025-08-04 10:59:45 +00:00
Renamed Sqlite and Sqlite3 references to SQLite.
This commit is contained in:
parent
7534e43497
commit
e626a3f993
6 changed files with 8 additions and 9 deletions
|
@ -240,14 +240,13 @@ class Ticket17477RegressionTests(AdminScriptTestCase):
|
|||
self.assertNoOutput(err)
|
||||
|
||||
|
||||
class Sqlite3InMemoryTestDbs(TransactionTestCase):
|
||||
class SQLiteInMemoryTestDbs(TransactionTestCase):
|
||||
multi_db = True
|
||||
available_apps = ['test_runner']
|
||||
|
||||
@unittest.skipUnless(all(db.connections[conn].vendor == 'sqlite' for conn in db.connections),
|
||||
"This is an sqlite-specific issue")
|
||||
def test_transaction_support(self):
|
||||
"""Ticket #16329: sqlite3 in-memory test databases"""
|
||||
for option_key, option_value in (
|
||||
('NAME', ':memory:'), ('TEST', {'NAME': ':memory:'})):
|
||||
tested_connections = db.ConnectionHandler({
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue