mirror of
https://code.mensbeam.com/MensBeam/Arsse.git
synced 2024-12-23 17:12:41 +00:00
5d61ab0a57
Three test failures remain, but these are minor and will be resolved soon. Handling of binary data is also broken, but given that this works fine with the PDO driver, there is presumably some correct method.
17 lines
663 B
PHP
17 lines
663 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\MySQL;
|
|
|
|
/**
|
|
* @group slow
|
|
* @covers \JKingWeb\Arsse\Db\MySQL\Driver<extended> */
|
|
class TestUpdate extends \JKingWeb\Arsse\TestCase\Db\BaseUpdate {
|
|
use \JKingWeb\Arsse\TestCase\DatabaseDrivers\MySQL;
|
|
|
|
protected static $minimal1 = "CREATE TABLE arsse_meta(`key` varchar(255) primary key, value text); INSERT INTO arsse_meta(`key`,value) values('schema_version','1');";
|
|
protected static $minimal2 = "UPDATE arsse_meta set value = '2' where `key` = 'schema_version';";
|
|
}
|