summaryrefslogtreecommitdiff
path: root/tests/UnitTests/ResourceTests/Custom/DemoPluginMysql/PHPunitplugins/resource.mysqltest.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/UnitTests/ResourceTests/Custom/DemoPluginMysql/PHPunitplugins/resource.mysqltest.php')
-rw-r--r--tests/UnitTests/ResourceTests/Custom/DemoPluginMysql/PHPunitplugins/resource.mysqltest.php19
1 files changed, 0 insertions, 19 deletions
diff --git a/tests/UnitTests/ResourceTests/Custom/DemoPluginMysql/PHPunitplugins/resource.mysqltest.php b/tests/UnitTests/ResourceTests/Custom/DemoPluginMysql/PHPunitplugins/resource.mysqltest.php
deleted file mode 100644
index 2b05da9d..00000000
--- a/tests/UnitTests/ResourceTests/Custom/DemoPluginMysql/PHPunitplugins/resource.mysqltest.php
+++ /dev/null
@@ -1,19 +0,0 @@
-<?php
-require_once SMARTY_DIR . '../demo/plugins/resource.mysql.php';
-
-class Smarty_Resource_Mysqltest extends Smarty_Resource_Mysql
-{
- public function __construct()
- {
- try {
- $this->db = PHPUnit_Smarty::$pdo;
- }
- catch
- (PDOException $e) {
- throw new SmartyException('Mysql Resource failed: ' . $e->getMessage());
- }
- $this->fetch = $this->db->prepare('SELECT modified, source FROM templates WHERE name = :name');
- $this->mtime = $this->db->prepare('SELECT modified FROM templates WHERE name = :name');
- }
-}
-