summaryrefslogtreecommitdiff
path: root/tests
Commit message (Collapse)AuthorAgeFilesLines
* Ignore identifiers in double-quotes when changing identifier case (fixes ↵Andi Albrecht2010-11-211-1/+1
| | | | issue21).
* Ignore AND after BETWEEN when reindenting statements (fixes issue14).Andi Albrecht2010-11-211-0/+8
|
* Group extended identifiers (fixes issue15).Andi Albrecht2010-11-211-0/+8
|
* Match single line comments at end of string.Andi Albrecht2010-11-141-0/+10
| | | | The bug was reported for CrunchyFrog: http://code.google.com/p/crunchyfrog/issues/detail?id=88
* Fix typo: Comparsion -> Comparison.Andi Albrecht2010-07-041-4/+4
|
* Clean up imports.Andi Albrecht2010-07-042-33/+33
| | | | | Removed wildcard imports, mainly to keep pyflakes quiet. But this change lifted some wrong imports and class usage.
* Improve statement detection for DECLARE statements outside ↵Andi Albrecht2010-06-231-0/+7
| | | | | | | | function/procedure definitions. The parser didn't recognized DECLARE statements outside function/procedure definitions correctly and assumed that a non-separating semicolon follows.
* Improve detection of escaped single quotes (fixes issue13, reported by ↵Andi Albrecht2010-06-171-0/+16
| | | | Martin Brochhaus, patch by bluemaro with test case by Dan Carley).
* Move regression test to separate directory.Andi Albrecht2010-06-173-13/+29
|
* Fix an issue with trailing whitespaces (reported by Kris).Andi Albrecht2010-02-181-0/+4
|
* Fix test case for CASE reindent.Andreas Albrecht2010-01-111-3/+4
|
* Fix return code when running unittests.Andreas Albrecht2010-01-111-2/+7
|
* Prevent WHERE grouper from consuming closing parenthesis (fixes issue9, ↵Andi Albrecht2009-09-122-1/+21
| | | | reported by estama).
* Improve detection of identifier aliases (fixes issue8).Andi Albrecht2009-07-131-0/+7
|
* Query token ancestry.Andi Albrecht2009-07-121-0/+24
|
* Add formatting test case for complex identifier lists.Andi Albrecht2009-07-121-0/+10
|
* Detect functions if they are used as identifiers.Andi Albrecht2009-07-121-1/+9
|
* Distinguish between operators that are part of a comparsion and others.Andi Albrecht2009-07-121-2/+4
|
* Fix incorrect detection of keyword fragments in names (fixes issue7, ↵Andi Albrecht2009-06-241-0/+21
| | | | reported and initial patch by andyboyko).
* Only add full path to test module if it isn't already in sys.path.Andi Albrecht2009-06-211-1/+3
|
* Conditional hotshot import.Andi Albrecht2009-06-081-1/+1
|
* Grouping of function/procedure calls.Andi Albrecht2009-05-271-1/+8
|
* Fixed grouping of semicolons within assignments.Andi Albrecht2009-05-141-7/+9
|
* Make sure that operators in comparsions are not handled too lazy.Andi Albrecht2009-05-141-0/+7
|
* Prepared test case, will be finished soon ;-)Andi Albrecht2009-05-111-0/+8
|
* * Python and PHP output filter now add a trailing whitespace.Andi Albrecht2009-05-062-0/+50
| | | | * More test coverage.
* Code cleanup and test coverage.Andi Albrecht2009-05-062-0/+58
|
* * Added profile option to run_tests.py.Andi Albrecht2009-05-061-3/+17
| | | | * Use sets in Token.match.
* Improved check for duplicated newlines (targets issue3).Andi Albrecht2009-05-051-0/+5
|
* Added unittest for issue3.Andi Albrecht2009-05-051-2/+15
|
* Improved parsing of identifier lists (targets issue2).Andi Albrecht2009-05-031-0/+6
|
* Added unittest for issue1 (linebreaks).Andi Albrecht2009-05-031-0/+14
|
* Turn relative import in tests module to absolute imports.Andi Albrecht2009-04-302-2/+2
|
* Recognize backticks quoting identifiers.Andi Albrecht2009-04-291-0/+5
|
* Improved handling of invalid identifiers, like for example "a.".Andi Albrecht2009-04-271-0/+8
|
* Recurse into subgroups when grouping case statements.Andi Albrecht2009-04-241-0/+12
|
* Handle wildcards in identifiers.Andi Albrecht2009-04-242-0/+17
|
* Analyse AS recursive (fixes issue4).Andi Albrecht2009-04-212-1/+11
|
* Initial import.Andi Albrecht2009-04-0314-0/+558