more tests plus associated bug fixes, some tests still broken (in the sense they are not being run, not that they fail)

This commit is contained in:
alisdair sullivan 2010-08-10 21:56:29 -07:00
parent 80d42c4e49
commit 843b3cdf24
3 changed files with 117 additions and 27 deletions

View file

@ -81,6 +81,8 @@ parse_opts([space|Rest], Opts) ->
parse_opts(Rest, Opts#opts{space = 1});
parse_opts([{output_encoding, Val}|Rest], Opts) ->
parse_opts(Rest, Opts#opts{output_encoding = Val});
parse_opts([_|Rest], Opts) ->
parse_opts(Rest, Opts);
parse_opts([], Opts) ->
Opts.