[Argil-svn] SF.net SVN: argil: [543] branches/experimental
Status: Alpha
Brought to you by:
tswicegood
|
From: <tsw...@us...> - 2007-07-14 22:05:50
|
Revision: 543
http://argil.svn.sourceforge.net/argil/?rev=543&view=rev
Author: tswicegood
Date: 2007-07-14 15:05:46 -0700 (Sat, 14 Jul 2007)
Log Message:
-----------
Remove Argil_Pdo - should have already been committed
Removed Paths:
-------------
branches/experimental/src/Argil/Pdo.php
branches/experimental/tests/Argil/PdoTest.php
Deleted: branches/experimental/src/Argil/Pdo.php
===================================================================
--- branches/experimental/src/Argil/Pdo.php 2007-06-01 23:54:06 UTC (rev 542)
+++ branches/experimental/src/Argil/Pdo.php 2007-07-14 22:05:46 UTC (rev 543)
@@ -1,36 +0,0 @@
-<?php
-
-class Argil_Pdo
-{
- public function __construct() { }
-
- public function __sleep() { }
-
- public function __wakeup() { }
-
- public function beginTransaction() { }
-
- public function commit() { }
-
- public function errorCode() { }
-
- public function errorInfo() { }
-
- public function exec($statement) { }
-
- public function getAttribute($attribute) { }
-
- public function getAvailableDrivers() { }
-
- public function lastInsertId($name = null) { }
-
- public function prepare($string, array $driver_options = array()) { }
-
- public function query($statement, $p2 = null, $p3 = null, array $p4 = null) { }
-
- public function quote($string, $parameter_type = PDO::PARAM_STR) { }
-
- public function rollBack() { }
-
- public function setAttribute($attribute, $value) { }
-}
\ No newline at end of file
Deleted: branches/experimental/tests/Argil/PdoTest.php
===================================================================
--- branches/experimental/tests/Argil/PdoTest.php 2007-06-01 23:54:06 UTC (rev 542)
+++ branches/experimental/tests/Argil/PdoTest.php 2007-07-14 22:05:46 UTC (rev 543)
@@ -1,25 +0,0 @@
-<?php
-
-require_once dirname(__FILE__) . '/../config.php';
-require_once 'Argil/Pdo.php';
-
-class Argil_PdoTest extends UnitTestCase
-{
- public function testHasAllOfTheSameMethodsAsPdo()
- {
- $argil = new ReflectionClass('Argil_Pdo');
- $pdo = new ReflectionClass('PDO');
-
- $argilMethods = array();
- foreach ($argil->getMethods() as $argilMethod) {
- $argilMethods[] = $argilMethod->getName();
- }
-
- foreach ($pdo->getMethods() as $pdoMethod) {
- $this->assertTrue(
- in_array($pdoMethod->getName(), $argilMethods),
- "Checking that {$pdoMethod->getName()} is declared"
- );
- }
- }
-}
\ No newline at end of file
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|