added test for accessing xml attributes
authorTobias Schultze <webmaster@tubo-world.de>
Fri, 31 Jan 2014 14:53:51 +0000 (15:53 +0100)
committerTobias Schultze <webmaster@tubo-world.de>
Fri, 31 Jan 2014 14:53:51 +0000 (15:53 +0100)
test/Twig/Tests/Fixtures/regression/simple_xml_element.test

index 61babef..60c3c51 100644 (file)
@@ -4,14 +4,16 @@ Twig is able to deal with SimpleXMLElement instances as variables
 version_compare(phpversion(), '5.3.0', '>=')
 --TEMPLATE--
 Hello '{{ images.image.0.group }}'!
+{{ images.image.0.group.attributes.myattr }}
 {{ images.children().image.count() }}
 {% for image in images %}
     - {{ image.group }}
 {% endfor %}
 --DATA--
-return array('images' => new SimpleXMLElement('<images><image><group>foo</group></image><image><group>bar</group></image></images>'))
+return array('images' => new SimpleXMLElement('<images><image><group myattr="example">foo</group></image><image><group>bar</group></image></images>'))
 --EXPECT--
 Hello 'foo'!
+example
 2
     - foo
     - bar