2 char indent in tests

This commit is contained in:
Ryan Tomayko 2011-03-05 04:46:51 -08:00
parent 3f1a8dfef3
commit f9dd29eafa
2 changed files with 84 additions and 80 deletions

View File

@ -17,6 +17,7 @@ class RoccoIssueTests < Test::Unit::TestCase
end
end
end
def test_issue10_utf8_processing
# Rocco has issues with strange UTF-8 characters: need to explicitly set the encoding for Pygments
# http://github.com/rtomayko/rocco/issues#issue/10
@ -36,6 +37,7 @@ class RoccoIssueTests < Test::Unit::TestCase
"ISO-8859-1 input should probably also behave correctly."
)
end
def test_issue12_css_octothorpe_classname_change
# Docco changed some CSS classes. Rocco needs to update its default template.
# http://github.com/rtomayko/rocco/issues#issue/12
@ -52,6 +54,7 @@ class RoccoIssueTests < Test::Unit::TestCase
"`octothorpe` link is present in rendered HTML. This ought be replaced with `pilcrow`."
)
end
def test_issue13_incorrect_code_divider_parsing
# In `bash` mode (among others), the comment class is `c`, not `c1`.
# http://github.com/rtomayko/rocco/issues#issue/13
@ -67,6 +70,7 @@ class RoccoIssueTests < Test::Unit::TestCase
end
end
end
def test_issue15_extra_space_after_comment_character_remains
# After the comment character, a single space should be removed.
# http://github.com/rtomayko/rocco/issues#issue/15