summaryrefslogtreecommitdiff
path: root/tests
AgeCommit message (Collapse)Author
2013-08-13Use six.text_type in richstring_testpython2Martin Vilcans
2013-08-13Use six.StringIO instead of StringIO.StringIOMartin Vilcans
2013-08-13Use six.StringIO for Python 3 compatMartin Vilcans
2013-08-13Use unittest2 if available but don't require it.Martin Vilcans
The features of unittest2 are already in Python >=2.7.
2013-08-13Removed dependency on unittest2Martin Vilcans
I think I don't use its features and it doesn't exist under that name in Python 3.
2012-07-22Fixed runtime error on HTML output of dual dialogue.Martin Vilcans
Thanks for the bug report, Dahlia!
2012-07-10Strip leading and trailing whitespace from character names.Martin Vilcans
Closes #2
2012-07-10Automatically create test cases from files in tests/filesMartin Vilcans
This replaces the repeated test code.
2012-07-10Changed bad test case nameMartin Vilcans
2012-07-09Added page break support.Martin Vilcans
In HTML output, uses style page-break-before: always Closes #3
2012-07-08PEP8 compliance.Martin Vilcans
Especially get rid of the "E128 continuation line under-indented for visual indent" which is new in later versions of the pep8 program.
2012-07-08Only a single period creates a slug.Martin Vilcans
Fixes #4
2012-03-12Support mixed sections and synopsisesMartin Vilcans
2012-03-12Support sections that are bunched together.Martin Vilcans
2012-03-01Line breaks become <br/> instead of <p> in HTML.Martin Vilcans
This should make line breaks look good with the new CSS.
2012-02-23Output synopsis to HTML.Martin Vilcans
Used Jonathan's CSS.
2012-02-20Added commenting out using /* boneyard */Martin Vilcans
2012-02-19Transition must end with "TO:", not just ":"Martin Vilcans
New in Fountain spec.
2012-02-19Renamed SPMD to FountainMartin Vilcans
2012-02-19Moved spmd tests into separate classes.Martin Vilcans
2012-02-19Added synopsis support to slugs and sections.Martin Vilcans
2012-02-16Parse the title page.Martin Vilcans
The title page isn't actually used for anything right now, but if it is in the source, at least it doesn't appear as action lines in the output.
2012-02-08Added support for sectionsMartin Vilcans
2012-02-07Scene headings are now h6 in HTML outputMartin Vilcans
2012-02-07Read the spec again. Scene numbers are alphanumeric only.Martin Vilcans
2012-02-07Added scene numbersMartin Vilcans
2012-02-01Refactored spmd parser to use InputParagraph class.Martin Vilcans
2012-02-01New syntax for dual dialog: ^ (Jan 2012 spec)Martin Vilcans
2012-02-01Some pep8 compliance regarding whitespaceMartin Vilcans
2012-01-31Transitions no longer have to be followed by a scene heading.Martin Vilcans
2012-01-31Changed rules for forced Scene Headings (slugs).Martin Vilcans
Double linebreaks no longer signify a slug. Instead you can force one with a leading period: e.g. FADE IN: .DARKNESS (whatever that would look like!?)
2012-01-31Added tests on actual input/output files.Martin Vilcans
This is to make sure everything works from the command-line level to avoid silly mistakes like the last bug.
2011-12-16A leading ">" on a line means it's parsed as a transition.Martin Vilcans
(But only if it's the last paragraph or followed by a slug.)
2011-12-16Possible to escape stars (\*) so they aren't parsed as emphasis.Martin Vilcans
2011-12-16A line with two spaces inside dialog keeps the dialog together.Martin Vilcans
Fixed according to spec.
2011-12-16Fixed some problems with old RichString tests.Martin Vilcans
Sometimes the segments of the RichString objects became RichString objects instead of Segment. That's what you get for dynamic typing I guess...
2011-11-28Added licensing information (MIT license)Martin Vilcans
2011-11-26Some code style changesMartin Vilcans
2011-11-25Allow whitespace after "<" on centered line.Martin Vilcans
2011-11-22Fix incorrectly parsing when mixing italic and bold. Thx, Stu!Martin Vilcans
2011-11-15Fixed bold/underline etc. in FDX. (Capitalization mistake.)Martin Vilcans
2011-11-15Make sure upper case centered paragraph isn't parsed as dialogue.Martin Vilcans
2011-11-15Added support for >centering text<Martin Vilcans
2011-11-10Made RichString non-hierarchical (simpler).Martin Vilcans
Also: FDX output should have correct line breaks now.
2011-10-01Just some cleanup/reformattingMartin Vilcans
2011-09-29Added FDX outputMartin Vilcans
2011-09-26Use rich strings for all content.Martin Vilcans
2011-09-21PEP8 compliance.Martin Vilcans
2011-09-21Added requirement that a slug must be only one line.Martin Vilcans
Otherwise it is parsed as dialog.
2011-09-21Parse bold, italic and underline (no output yet).Martin Vilcans