File: test_pseudo_element.py

package info (click to toggle)
soupsieve 2.8.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,048 kB
  • sloc: python: 8,428; sh: 8; makefile: 5; javascript: 2
file content (11 lines) | stat: -rw-r--r-- 320 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
"""Test general pseudo-element cases."""
from .. import util


class TestPseudoElement(util.TestCase):
    """Test pseudo-elements."""

    def test_pseudo_element(self):
        """Test that pseudo elements always fail because they are not supported."""

        self.assert_raises('::first-line', NotImplementedError)