diff options
| author | Sean Brant | 2013-07-13 11:03:34 -0500 |
|---|---|---|
| committer | Sean Brant | 2013-07-13 11:03:34 -0500 |
| commit | 73d60d7dfec96a9f4f594a2559574ca1fe91adb5 (patch) | |
| tree | b860359cbd6bb107a482ebc139ee01444b3a2c4b | |
| parent | 1679ea45911f86c29608b2bc61a0950c9ea45c48 (diff) | |
| download | pykss-73d60d7dfec96a9f4f594a2559574ca1fe91adb5.tar.bz2 | |
Fixes tests that had been skipped
| -rw-r--r-- | tests/test_section.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/test_section.py b/tests/test_section.py index f2cb57d..049a4d0 100644 --- a/tests/test_section.py +++ b/tests/test_section.py @@ -23,23 +23,23 @@ Styleguide 2.1.1. """ self.section = Section(comment.strip(), 'example.css') - def stest_parses_the_description(self): + def test_parses_the_description(self): self.assertEqual(self.section.description, '# Form Button\n\nYour standard form button.') - def stest_parses_the_modifiers(self): + def test_parses_the_modifiers(self): self.assertEqual(len(self.section.modifiers), 4) - def stest_parses_modifier_names(self): + def test_parses_modifier_names(self): self.assertEqual(self.section.modifiers[0].name, ':hover') - def stest_parses_modifier_descriptions(self): + def test_parses_modifier_descriptions(self): self.assertEqual(self.section.modifiers[0].description, 'Highlights when hovering.') - def stest_parses_the_example(self): + def test_parses_the_example(self): expected = '<a href="#" class="button">Button</a><a href="#">Button</a>' self.assertEqual(self.section.example, expected) - def stest_parses_the_styleguide_reference(self): + def test_parses_the_styleguide_reference(self): self.assertEqual(self.section.section, '2.1.1') def test_handles_when_no_reference(self): |
