bpo-27645: Add support for native backup facility of SQLite (GH-4238)

(cherry picked from commit d7aed4102d)

Co-authored-by: Emanuele Gaifas <lelegaifax@gmail.com>
This commit is contained in:
Miss Islington (bot) 2018-03-10 14:29:19 -08:00 committed by Berker Peksag
parent 9e94c0d3c7
commit e8a5a92037
7 changed files with 369 additions and 2 deletions

View file

@ -7,7 +7,7 @@ import unittest
import sqlite3
from sqlite3.test import (dbapi, types, userfunctions,
factory, transactions, hooks, regression,
dump)
dump, backup)
def load_tests(*args):
if test.support.verbose:
@ -18,7 +18,8 @@ def load_tests(*args):
userfunctions.suite(),
factory.suite(), transactions.suite(),
hooks.suite(), regression.suite(),
dump.suite()])
dump.suite(),
backup.suite()])
if __name__ == "__main__":
unittest.main()