summaryrefslogtreecommitdiff
path: root/tests
Commit message (Collapse)AuthorAgeFilesLines
* Added assertMultiLineEqual function like the one on unittest2issue_73Jesús Leganés Combarro "Piranna"2012-08-071-0/+19
| | | Found at http://stackoverflow.com/a/3943697/586382
* Splited unittest on different topicsJesús Leganés Combarro "Piranna"2012-08-071-5/+139
|
* Created issues packageJesús Leganés Combarro "Piranna"2012-08-071-0/+0
|
* Finished unittestJesús Leganés Combarro "Piranna"2012-08-071-6/+91
|
* Created stub for issue #73 unittestJesús Leganés Combarro "Piranna"2012-08-071-0/+18
|
* Added mising sql file for testsJesús Leganés Combarro "Piranna"2012-05-271-0/+6
|
* Fixed test_includeStatementJesús Leganés Combarro "Piranna2012-05-231-1/+1
|
* Finished test for IncludeStatementJesús Leganés Combarro "Piranna2012-05-231-2/+5
|
* Fixed 'compact' testsJesús Leganés Combarro "Piranna2012-05-231-4/+21
|
* Fixed some testsJesús Leganés Combarro "Piranna2012-05-231-3/+15
|
* Updated testsJesús Leganés Combarro "Piranna2012-05-231-4/+4
|
* Merge branch 'master' into antiormJesús Leganés Combarro "Piranna"2012-05-191-0/+6
|\ | | | | | | | | Conflicts: sqlparse/filters.py
| * Merge pull request #67 from piranna/masterAndi Albrecht2012-05-151-2/+2
| |\ | | | | | | Some optimizations
| * | VALUES was incorrectly treated as a functionquest2012-04-221-0/+6
| | |
* | | Fixed comments by AndiJesús Leganés Combarro "Piranna"2012-05-191-7/+7
| | |
* | | Added compact filter and testsJesús Leganés Combarro "Piranna"2012-05-171-1/+26
| | |
* | | Added tests for functionsJesús Leganés Combarro "Piranna"2012-05-171-0/+103
| |/ |/|
* | Put common code from Python and PHP output filters in OutputFilterJesús Leganés Combarro "Piranna"2012-04-281-2/+2
|/
* splitstream -> parsestreamquest2012-04-211-3/+3
|
* Always use a stream internally; makes things more readable.quest2012-04-211-1/+0
|
* We can now work with file-like objects.quest2012-04-212-0/+54
|
* Preserve whitespace after subgroups.Andi Albrecht2012-04-191-0/+6
|
* Added tests for StripWhitespaceJesús Leganés Combarro "Piranna"2012-03-241-0/+75
|
* Changed get_identifiers() to be a generatorJesús Leganés Combarro "Piranna"2012-02-031-1/+1
|
* Change all internal use of to_unicode() to __unicode__() and marked former ↵Jesús Leganés Combarro "Piranna"2012-02-031-12/+12
| | | | one as deprecated.
* Added test for Issue 57Jesús Leganés Combarro "Piranna"2012-01-232-0/+19
|
* Fixed lexer to accept negative numbers (fixes issue56).Kevin Jing Qiu2012-01-101-0/+6
|
* Detect alias for CASE statements (targets issue46).Andi Albrecht2011-09-291-0/+5
|
* Make keyword detection more restrict (fixes issue47).Andi Albrecht2011-09-291-0/+4
| | | | | Keywords most likely don't follow dots. Maybe there are other exclusions too, but for now let's just go with this one.
* Merged.Andi Albrecht2011-09-271-0/+69
|\
| * Replace assertListEqual by assertEqual for backwards compatibility.Andi Albrecht2011-09-041-7/+7
| | | | | | | | | | There's no need to call assertListEqual, assertEqual() in Python >= 2.7 automatically chooses the right equality function for us.
| * Move pipeline test to tests/ directory.Andi Albrecht2011-09-041-0/+69
| |
* | Choose first token during identifier grouping when both names/symbols and ↵Andi Albrecht2011-09-271-1/+6
|/ | | | functions are found (fixes issue45).
* Minor fixes to make the py3k version work again.Andi Albrecht2011-07-291-1/+2
|
* Add parsing of MS Access column names with braces (fixes issue27).Andi Albrecht2011-07-291-0/+7
|
* Detection of placeholders in paramterized queries (fixes issue22).Andi Albrecht2011-07-251-0/+20
|
* Make sure that stand-alone comments are parsed correctly (fixes issue26).Andi Albrecht2011-07-251-0/+18
|
* Releax keyword detection, when keywords are used as function names (fixes ↵Andi Albrecht2011-07-241-0/+7
| | | | issue36).
* Split statements with IF as functions correctly (fixes issue33).Andi Albrecht2011-07-241-0/+7
|
* Detect function aliases better.Andi Albrecht2011-07-241-0/+4
|
* Make sure that identifier lists in subselects with alias are grouped correctly.Andi Albrecht2011-07-231-0/+32
|
* Avoid parsing of names as keywords (fixes issue39).Andi Albrecht2011-07-201-0/+10
|
* Fix removal of comments when strip_comments is True (fixes issue38).Andi Albrecht2011-06-101-0/+7
|
* Don't group trailing whitepsace in WHERE clauses (fixes issue35).Andi Albrecht2011-04-131-2/+10
|
* Move regression tests.Andi Albrecht2011-03-174-37/+22
|
* Ignore case in token.match() for all keyword types (fixes issue34).Andi Albrecht2011-03-171-0/+14
|
* Fix formatting issue with extended CASE statements.Andi Albrecht2011-02-281-0/+8
|
* Improve float parsing (thanks, Kris).Andi Albrecht2011-01-261-0/+14
|
* Fix a Py3K regression.Andi Albrecht2010-12-091-1/+1
|
* Ignore identifiers in double-quotes when changing identifier case (fixes ↵Andi Albrecht2010-11-211-1/+1
| | | | issue21).