summaryrefslogtreecommitdiffstats
path: root/tests
AgeCommit message (Collapse)Author
2016-09-21fix -uuu test on WindowsAndrew Gallant
2016-09-20Add "unrestricted" flag.Andrew Gallant
I don't like having multiple flags do the same thing, but -u, -uu and -uuu are much easier to remember, particularly with -uuu meaning "search everything."
2016-09-17Add support for searching multiple patterns with -e.0.1.4Andrew Gallant
Also, change -Q/--literal to -F/--fixed-strings because compatibility with grep is probably better.
2016-09-11Make file type filtering a lot faster.Andrew Gallant
We do this by avoiding using a RegexSet (*sigh*). In particular, file type matching has much simpler semantics than gitignore files, so we don't actually need to care which file type matched. Therefore, we can get away with a single regex with a giant alternation.
2016-09-09Fix test that relied on non-deterministic order of results.Andrew Gallant
2016-09-09Fix `files` test. What a pain.Andrew Gallant
2016-09-09Add integration tests.Andrew Gallant