Navigation Menu

Skip to content

Commit

Permalink
Remove tests, that interact with RedirectRoute.
Browse files Browse the repository at this point in the history
RedirectRoute now has exit() in it.  This makes hitting those
routes in testing dangerous.
  • Loading branch information
markstory committed Oct 23, 2011
1 parent 6d6aa3c commit b02155e
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 12 deletions.
10 changes: 0 additions & 10 deletions lib/Cake/Test/Case/TestSuite/ControllerTestCaseTest.php
Expand Up @@ -298,16 +298,6 @@ public function testUseRoutes() {
include CAKE . 'Test' . DS . 'test_app' . DS . 'Config' . DS . 'routes.php';
$result = $this->Case->testAction('/some_alias');
$this->assertEquals($result, 5);

include CAKE . 'Test' . DS . 'test_app' . DS . 'Config' . DS . 'routes.php';
$this->Case->testAction('/redirect_me_now');
$result = $this->Case->headers['Location'];
$this->assertEquals($result, 'http://cakephp.org');

include CAKE . 'Test' . DS . 'test_app' . DS . 'Config' . DS . 'routes.php';
$this->Case->testAction('/redirect_me');
$result = $this->Case->headers['Location'];
$this->assertEquals($result, Router::url(array('controller' => 'tests_apps', 'action' => 'some_method'), true));
}

/**
Expand Down
2 changes: 0 additions & 2 deletions lib/Cake/Test/test_app/Config/routes.php
Expand Up @@ -21,5 +21,3 @@

Router::parseExtensions('json');
Router::connect('/some_alias', array('controller' => 'tests_apps', 'action' => 'some_method'));
Router::redirect('/redirect_me_now', 'http://cakephp.org');
Router::redirect('/redirect_me', array('controller' => 'tests_apps', 'action' => 'some_method'));

0 comments on commit b02155e

Please sign in to comment.