Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

gh-93795: Use test.support TESTFN/unlink in sqlite3 tests#93796

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Merged
erlend-aasland merged 1 commit intopython:mainfromerlend-aasland:sqlite-testfn
Jun 14, 2022
Merged
Changes fromall commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 15 additions & 17 deletionsLib/test/test_sqlite3/test_transactions.py
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -23,35 +23,33 @@
import os, unittest
import sqlite3 as sqlite

from test.support import LOOPBACK_TIMEOUT
from test.support.os_helper import TESTFN, unlink

from test.test_sqlite3.test_dbapi import memory_database

def get_db_path():
return "sqlite_testdb"

TIMEOUT = LOOPBACK_TIMEOUT / 10


class TransactionTests(unittest.TestCase):
def setUp(self):
try:
os.remove(get_db_path())
except OSError:
pass

self.con1 = sqlite.connect(get_db_path(), timeout=0.1)
self.con1 = sqlite.connect(TESTFN, timeout=TIMEOUT)
self.cur1 = self.con1.cursor()

self.con2 = sqlite.connect(get_db_path(), timeout=0.1)
self.con2 = sqlite.connect(TESTFN, timeout=TIMEOUT)
self.cur2 = self.con2.cursor()

def tearDown(self):
self.cur1.close()
self.con1.close()
try:
self.cur1.close()
self.con1.close()

self.cur2.close()
self.con2.close()
self.cur2.close()
self.con2.close()

try:
os.unlink(get_db_path())
except OSError:
pass
finally:
unlink(TESTFN)

def test_dml_does_not_auto_commit_before(self):
self.cur1.execute("create table test(i)")
Expand Down

[8]ページ先頭

©2009-2025 Movatter.jp