mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-06-28 05:37:24 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/branches/maserati@13186 201d5d3c-b55e-5fd7-737f-ddc643e51545
21 lines
742 B
PHP
21 lines
742 B
PHP
<?php
|
|
/* Copyright (C) NAVER <http://www.navercorp.com> */
|
|
|
|
class CubridDeleteTest extends CubridTest {
|
|
|
|
function _test($xml_file, $argsString, $expected){
|
|
$this->_testQuery($xml_file, $argsString, $expected, 'getDeleteSql');
|
|
}
|
|
|
|
function test_module_deleteActionForward(){
|
|
$xml_file = _XE_PATH_ . "modules/module/queries/deleteActionForward.xml";
|
|
$argsString = '$args->module = "page";
|
|
$args->type = "page";
|
|
$args->act = "tata";';
|
|
$expected = 'delete "action_forward" from "xe_action_forward" as "action_forward"
|
|
where "module" = \'page\'
|
|
and "type" = \'page\'
|
|
and "act" = \'tata\'';
|
|
$this->_test($xml_file, $argsString, $expected);
|
|
}
|
|
}
|