From 73d60d7dfec96a9f4f594a2559574ca1fe91adb5 Mon Sep 17 00:00:00 2001
From: Sean Brant
Date: Sat, 13 Jul 2013 11:03:34 -0500
Subject: Fixes tests that had been skipped
---
tests/test_section.py | 12 ++++++------
1 file 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 = 'ButtonButton'
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):
--
cgit v1.2.3