Преглед на файлове

[Form] Remove a test which is no more relevant (after recent FileType refactoring)

Victor Berchet преди 14 години
родител
ревизия
ee5d975783
променени са 1 файла, в които са добавени 0 реда и са изтрити 16 реда
  1. 0 16
      tests/Symfony/Tests/Component/Form/AbstractDivLayoutTest.php

+ 0 - 16
tests/Symfony/Tests/Component/Form/AbstractDivLayoutTest.php

@@ -409,20 +409,4 @@ abstract class AbstractDivLayoutTest extends AbstractLayoutTest
 '
         );
     }
-
-    public function testFileLabelAccessibility()
-    {
-        $form = $this->factory->createNamed('file', 'name');
-        $html = $this->renderRow($form->createView());
-
-        $this->assertMatchesXpath($html,
-'/div
-    [
-        ./label[@for="name"]
-        /following-sibling::input[@id="name"][@type="file"]
-    ]
-'
-        );
-    }
-
 }