rocco/test
Mike West b11543d382 Normalizing leading space in comments
That is:

    def function:
        """
            This is a comment
            with _lots_ of leading
            space!  OMG!
        """
        pass

Will parse into:

    [
        [
            [   "This is a comment",
                "with _lots_ of leading",
                "space!  OMG!"
            ],
            ...
        ]
    ]
2010-11-22 14:42:21 +01:00
..
fixtures Specify encoding for Pygments 2010-10-19 13:32:03 +02:00
helper.rb Refactoring tests out into separate files. 2010-10-24 11:08:04 +02:00
suite.rb Refactoring tests out into separate files. 2010-10-24 11:08:04 +02:00
test_basics.rb Fixing tests for block comments. 2010-11-22 08:41:54 +01:00
test_block_comments.rb Normalizing leading space in comments 2010-11-22 14:42:21 +01:00
test_comment_normalization.rb Normalizing leading space in comments 2010-11-22 14:42:21 +01:00
test_commentchar_detection.rb Refactoring comment_char internals: prepping for block comments 2010-11-21 16:53:22 +01:00
test_language_detection.rb Refactoring tests out into separate files. 2010-10-24 11:08:04 +02:00
test_reported_issues.rb Refactoring tests out into separate files. 2010-10-24 11:08:04 +02:00
test_skippable_lines.rb Fixing tests for block comments. 2010-11-22 08:41:54 +01:00