aboutsummaryrefslogtreecommitdiffstats
path: root/tests/test_dotfile.py
AgeCommit message (Collapse)AuthorFilesLines
2019-03-05Finish migration from py.path to pathlibGravatar Jon Bernard 1-50/+58
2019-03-05Fix cli tests with pathlibGravatar Jon Bernard 1-3/+3
2018-09-22Clean up dotfile tests slightlyGravatar Jon Bernard 1-8/+25
2018-09-21Use py's local write() in tests, fixes non-py3 test failuresGravatar Jon Bernard 1-4/+2
2018-09-21Fix state testsGravatar Jon Bernard 1-16/+12
2018-04-17Parameterize a couple unit testsGravatar Jon Bernard 1-7/+9
2016-10-12Cleanup exception importsGravatar Jon Bernard 1-2/+2
2016-01-22Simplify test fixtures into a single repositoryGravatar Jon Bernard 1-66/+64
2016-01-21Allow globs in ignore patternsGravatar Jon Bernard 1-1/+1
2016-01-19Finish tests for dotfile classGravatar Jon Bernard 1-65/+121
2016-01-17Split tests into separate filesGravatar Jon Bernard 1-0/+89
2016-01-03Consolidate tests into a single fileGravatar Jon Bernard 1-137/+0
2016-01-02Update dotfile tests to match recent changesGravatar Jon Bernard 1-64/+66
2016-01-01Implement dotfile state managementGravatar Jon Bernard 1-5/+51
2015-12-31Add invalid test for dotfile classGravatar Jon Bernard 1-0/+17
2015-12-30Use pytest parametrize to simplify testsGravatar Jon Bernard 1-73/+33
2015-12-29Add dotfile class reworkGravatar Jon Bernard 1-0/+112
This version of the dotfile class uses py.path.local and removes much of the cruft of using os.path and it's associated requirements. There are still a few things missing, namely dry_run mode where commands are printed instead of executed and force sync. They will be included as required.