Created
October 30, 2010 21:57
-
-
Save bobthecow/655784 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
require_once '../Mustache.php'; | |
class MustacheCallTest extends PHPUnit_Framework_TestCase { | |
public function testCallEatsContext() { | |
$foo = new Foo(); | |
$foo->name = 'Bob'; | |
$template = '{{# foo }}{{ label }}: {{ name }}{{/ foo }}'; | |
$data = array('label' => 'name', 'foo' => $foo); | |
$m = new Mustache($template, $data); | |
$this->assertEquals('name: Bob', $m->render()); | |
} | |
} | |
class Foo { | |
public $name; | |
public function __call($method, $args) { | |
return 'unknown value'; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
If mustache tests for the presence of a method in the current context with
is_callable()
,__call
will always win. It trumps anything in the parent context --$label
in this case. It also trumps the public$name
member variable. The output of this test would be:Which is obviously not what anyone intended.