浏览代码

[Form] added some unit tests

hlecorche 13 年之前
父节点
当前提交
38f64a1bd9
共有 1 个文件被更改,包括 2 次插入0 次删除
  1. 2 0
      tests/Symfony/Tests/Component/Form/AbstractLayoutTest.php

+ 2 - 0
tests/Symfony/Tests/Component/Form/AbstractLayoutTest.php

@@ -1491,11 +1491,13 @@ abstract class AbstractLayoutTest extends \PHPUnit_Framework_TestCase
     {
         $form = $this->factory->createNamed('textarea', 'na&me', 'foo&bar', array(
             'property_path' => 'name',
+            'pattern' => 'foo',
         ));
 
         $this->assertWidgetMatchesXpath($form->createView(), array(),
 '/textarea
     [@name="na&me"]
+    [not(@pattern)]
     [.="foo&bar"]
 '
         );