Browse Source

Fix failing test from 2.5

mark_story 12 years ago
parent
commit
2247d521a2
1 changed files with 0 additions and 13 deletions
  1. 0 13
      Cake/Test/TestCase/View/ViewTest.php

+ 0 - 13
Cake/Test/TestCase/View/ViewTest.php

@@ -1572,19 +1572,6 @@ TEXT;
 	}
 
 /**
- * Test that setting arbitrary properties still works.
- *
- * @return void
- */
-	public function testPropertySettingMagicGet() {
-		$this->assertFalse(isset($this->View->action));
-		$this->View->request->params['action'] = 'login';
-		$this->assertEquals('login', $this->View->action);
-		$this->assertTrue(isset($this->View->action));
-		$this->assertTrue(!empty($this->View->action));
-	}
-
-/**
  * Test memory leaks that existed in _paths at one point.
  *
  * @return void