hledger/tests
Simon Michael 856c0b3042 lib: fix bracketed posting dates, parser cleanup (#304)
Bracketed posting dates were fragile; they worked only if you wrote full
10-character dates. Also some semantics were a bit unclear. Now they
should be robust, and have been documented more clearly. This is a
legacy undocumented Ledger syntax, but it improves compatibility and
might be preferable to the more verbose "date:" tags if you write
posting dates often (as I do).

Internally, bracketed posting dates are no longer considered to be tags.
Journal comment, tag, and posting date parsers have been reworked, all
with doctests. Also the journal parser types generally have been
tightened up and clarified, making it much easier to know how to combine
and run them. There's now

-- | A parser of strings with generic user state, monad and return type.
type StringParser u m a = ParsecT String u m a

-- | A string parser with journal-parsing state.
type JournalParser m a = StringParser JournalContext m a

-- | A journal parser that runs in IO and can throw an error mid-parse.
type ErroringJournalParser a = JournalParser (ExceptT String IO) a

and corresponding convenience functions (and short aliases) for running them.
2016-04-28 13:34:57 -07:00
..
add tests: make functional tests use "hledger" again 2015-07-12 12:29:53 -07:00
addons tests: make functional tests use "hledger" again 2015-07-12 12:29:53 -07:00
balance balance, lib: --format/StringFormat improvements 2015-08-19 20:53:51 -07:00
cli cli: adapt func tests pass to new --help 2016-04-19 10:44:43 -07:00
csv tests: make functional tests use "hledger" again 2015-07-12 12:29:53 -07:00
i18n tools: fix make functest in a fresh copy 2016-04-21 08:37:37 -07:00
journal lib: fix bracketed posting dates, parser cleanup (#304) 2016-04-28 13:34:57 -07:00
misc consolidate some journal format-specific tests 2015-11-22 08:55:29 -08:00
print tests: make functional tests use "hledger" again 2015-07-12 12:29:53 -07:00
register tests: make functional tests use "hledger" again 2015-07-12 12:29:53 -07:00
stats tests: make functional tests use "hledger" again 2015-07-12 12:29:53 -07:00
timeclock rename timelog format to timeclock 2016-04-12 21:13:19 -07:00