|
"""Test attribute selectors.""" |
|
from .. import util |
|
|
|
|
|
class TestAttribute(util.TestCase): |
|
"""Test attribute selectors.""" |
|
|
|
MARKUP = """ |
|
<div id="div"> |
|
<p id="0">Some text <span id="1"> in a paragraph</span>.</p> |
|
<a id="2" href="http://google.com">Link</a> |
|
<span id="3">Direct child</span> |
|
<pre id="pre"> |
|
<span id="4">Child 1</span> |
|
<span id="5">Child 2</span> |
|
<span id="6">Child 3</span> |
|
</pre> |
|
</div> |
|
""" |
|
|
|
def test_attribute_not_equal_no_quotes(self): |
|
"""Test attribute with value that does not equal specified value (no quotes).""" |
|
|
|
|
|
self.assert_selector( |
|
self.MARKUP, |
|
'body [id!=\\35]', |
|
["div", "0", "1", "2", "3", "pre", "4", "6"], |
|
flags=util.HTML5 |
|
) |
|
|
|
def test_attribute_not_equal_quotes(self): |
|
"""Test attribute with value that does not equal specified value (quotes).""" |
|
|
|
|
|
self.assert_selector( |
|
self.MARKUP, |
|
"body [id!='5']", |
|
["div", "0", "1", "2", "3", "pre", "4", "6"], |
|
flags=util.HTML5 |
|
) |
|
|
|
def test_attribute_not_equal_double_quotes(self): |
|
"""Test attribute with value that does not equal specified value (double quotes).""" |
|
|
|
|
|
self.assert_selector( |
|
self.MARKUP, |
|
'body [id!="5"]', |
|
["div", "0", "1", "2", "3", "pre", "4", "6"], |
|
flags=util.HTML5 |
|
) |
|
|