Skip to content

Commit

Permalink
Add failing test for #2661
Browse files Browse the repository at this point in the history
  • Loading branch information
markstory committed Apr 14, 2012
1 parent 2fd15b6 commit 0f21007
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
18 changes: 18 additions & 0 deletions lib/Cake/Test/Case/View/ViewTest.php
Expand Up @@ -993,6 +993,24 @@ public function testRenderUsingViewProperty() {
$this->assertRegExp('/Add User/', $result);
}

/**
* Test render()ing a file in a subdir from a custom viewPath
* in a plugin.
*
* @return void
*/
public function testGetViewFileNameSubdirWithPluginAndViewPath()

This comment has been minimized.

Copy link
@ADmad

ADmad Apr 14, 2012

Member

The code sniffer didn't barf on brace on new line? :(

This comment has been minimized.

Copy link
@markstory

markstory Apr 14, 2012

Author Member

Hrmm, I'll fix this and check the sniffer too.

{
$this->PostsController->plugin = 'TestPlugin';
$this->PostsController->viewPath = 'Elements';
$this->PostsController->name = 'Posts';
$View = new TestView($this->PostsController);

$expected = CAKE . 'Test' . DS . 'test_app' . DS . 'Plugin' . DS . 'TestPlugin' .
DS . 'View' . DS . 'Elements' . DS . 'sub_dir' . DS . 'sub_element.ctp';
$this->assertEquals($expected, $View->getViewFileName('sub_dir/sub_element'));
}

/**
* test that view vars can replace the local helper variables
* and not overwrite the $this->Helper references
Expand Down
@@ -0,0 +1 @@
Content from TestPlugin.Elements/sub_dir/sub_element

0 comments on commit 0f21007

Please sign in to comment.