about summary refs log tree commit diff
path: root/crates/cfg/src/tests.rs
AgeCommit message (Collapse)AuthorLines
2021-08-30Fix DNF construction, add proptestJonas Schievink-0/+31
2021-08-09internal: remove useless helpersAleksey Kladov-5/+5
We generally avoid "syntax only" helper wrappers, which don't do much: they make code easier to write, but harder to read. They also make investigations harder, as "find_usages" needs to be invoked both for the wrapped and unwrapped APIs
2021-04-04Make `ast_to_token_tree` infallibleJonas Schievink-4/+4
It could never return `None`, so reflect that in the return type
2020-10-23cfg: move tests to separate fileJonas Schievink-0/+193
that way we don't have to re-check the entire project when a test is changed