mirror of
https://code.mensbeam.com/MensBeam/Arsse.git
synced 2024-12-23 17:12:41 +00:00
e92bda5373
- Fix handling of binary data and long strings - Simplify handling of socket connections - Fix coverage
19 lines
692 B
PHP
19 lines
692 B
PHP
<?php
|
|
/** @license MIT
|
|
* Copyright 2017 J. King, Dustin Wilson et al.
|
|
* See LICENSE and AUTHORS files for details */
|
|
|
|
declare(strict_types=1);
|
|
namespace JKingWeb\Arsse\TestCase\Db\SQLite3PDO;
|
|
|
|
/**
|
|
* @covers \JKingWeb\Arsse\Db\SQLite3\PDODriver<extended>
|
|
* @covers \JKingWeb\Arsse\Db\PDODriver
|
|
* @covers \JKingWeb\Arsse\Db\PDOError
|
|
* @covers \JKingWeb\Arsse\Db\SQLState */
|
|
class TestUpdate extends \JKingWeb\Arsse\TestCase\Db\BaseUpdate {
|
|
use \JKingWeb\Arsse\TestCase\DatabaseDrivers\SQLite3PDO;
|
|
|
|
protected static $minimal1 = "create table arsse_meta(key text primary key not null, value text); pragma user_version=1";
|
|
protected static $minimal2 = "pragma user_version=2";
|
|
}
|