summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorAleksander Machniak <alec@alec.pl>2014-05-09 15:17:32 +0200
committerAleksander Machniak <alec@alec.pl>2014-05-09 15:17:32 +0200
commit638ebf69c4bdc3717d8ae535ec3b1f4b753f5856 (patch)
tree61e44175c8056addeb181271787a8ac4fdaa2add /tests
parent1af3d97636caa15463364934276a9f2c99d62f61 (diff)
Fix/remove tests related to data-* attributes handling
Diffstat (limited to 'tests')
-rw-r--r--tests/Framework/Html.php9
1 files changed, 0 insertions, 9 deletions
diff --git a/tests/Framework/Html.php b/tests/Framework/Html.php
index d9466e601..259d73e1a 100644
--- a/tests/Framework/Html.php
+++ b/tests/Framework/Html.php
@@ -54,15 +54,6 @@ class Framework_Html extends PHPUnit_Framework_TestCase
array(
array('data-test' => 'test'), null, ' data-test="test"',
),
- array(
- array('data-test' => 'test'), array('other'), '',
- ),
- array(
- array('data-test' => 'test'), array('data-test'), ' data-test="test"',
- ),
- array(
- array('data-test' => 'test'), array('data-*'), ' data-test="test"',
- ),
);
}