summaryrefslogtreecommitdiff
path: root/tests/test_basic_api.py
Commit message (Collapse)AuthorAgeFilesLines
* Fix and test the "lex(class)" and "format(class)" handlers.Georg Brandl2014-11-111-1/+18
|
* Dont print out all tokens to stdout.Georg Brandl2014-10-081-2/+0
|
* Closes #908: fix test suite to test formatters with no Unicode output correctly.Georg Brandl2014-10-071-7/+9
|
* Closes #1028: fix filters to return Unicode stringsGeorg Brandl2014-10-071-7/+16
|
* Closes #980: fix DeprecationWarnings (mostly due to files closed by __del__) ↵Georg Brandl2014-10-071-12/+3
| | | | | | on Py3. Also fix a bunch of other uses of open() to use the with statement.
* Fix minor problems noted by regexlint and 'make check'Tim Hatch2014-10-041-1/+3
|
* Sort out Unicode output issues with RTF and image formatters.Georg Brandl2014-09-201-1/+1
|
* Don't test lexer classes from arbitrary plugins.Georg Brandl2014-09-201-2/+2
|
* make test with -v a bit easier on the eyesGeorg Brandl2014-09-201-4/+5
|
* basic API test: use SkipTest; PEP8Georg Brandl2014-09-201-13/+15
|
* Make each instantiation a single testGeorg Brandl2014-09-201-2/+4
|
* Refactored formatter mapping to work like the lexer mapping.Georg Brandl2014-09-201-6/+10
| | | | Thanks to Ilia Choly for the initial pull request.
* Update ElixirLexer and example_elixir.exAlexei Sholik2014-06-051-0/+309
Elixir syntax has evolved quite significantly since the initial lexer was written. In this update I have rewritten most of the code to support modern Elixir (as of v0.14.0-dev). The example file has also been updated to give an quick overview of most of the language constructs.