diff --git a/tests/TestCase/View/Helper/FormHelperTest.php b/tests/TestCase/View/Helper/FormHelperTest.php index c1d18b75fb0..a8e06603222 100755 --- a/tests/TestCase/View/Helper/FormHelperTest.php +++ b/tests/TestCase/View/Helper/FormHelperTest.php @@ -3283,27 +3283,6 @@ public function testFormInputs() { $this->assertTags($result, $expected); } -/** - * Tests inputs() works with plugin models - * - * @return void - */ - public function testInputsPluginModel() { - $this->markTestIncomplete('Need to revisit once models work again.'); - $this->loadFixtures('Post'); - Plugin::load('TestPlugin'); - $this->Form->request['models'] = array( - 'TestPluginPost' => array('plugin' => 'TestPlugin', 'className' => 'TestPluginPost') - ); - $this->Form->create('TestPlugin.TestPluginPost'); - $result = $this->Form->inputs(); - - $this->assertContains('TestPluginPost[id]', $result); - $this->assertContains('TestPluginPost[author_id]', $result); - $this->assertContains('TestPluginPost[title]', $result); - $this->assertEquals('TestPluginPost', $this->Form->model()); - } - /** * testSelectAsCheckbox method *