aboutsummaryrefslogtreecommitdiffstats
path: root/tests/test_basic.py
AgeCommit message (Collapse)AuthorFilesLines
2016-01-03Consolidate tests into a single fileGravatar Jon Bernard 1-395/+0
2015-12-29Move CLI tests into separate fileGravatar Jon Bernard 1-15/+0
The intent is for each file in dotfiles/ to have a matching test file in tests/ so there is less confusion about which test files are testing which bits of functionality and where to look.
2015-12-28Create new location for sync testsGravatar Jon Bernard 1-19/+0
I'm going to migrate away from unittest capability in favor of pytest and its use of the py.path filesystem abstraction. It's much cleaner and easier to work with.
2015-12-28Move prefix tests to a separate fileGravatar Jon Bernard 1-27/+0
2015-12-28Remove half-backed tests refactoringGravatar Jon Bernard 1-0/+19
2015-11-22Fix flake8 errorsGravatar Ratson 1-40/+40
2015-11-22Fix package and prefix testGravatar Ratson 1-1/+0
2015-02-21Fix outstanding flake8 issuesGravatar Jon Bernard 1-17/+16
2015-01-13Add no_dot_prefix optionGravatar Ivan Malison 1-1/+20
This utility can easily be used for synchronizing arbitrary configuration folders with symlinks that may not necessarily be the home directory. I have encountered several use cases where the files that I want to manage with 'dotfiles' should not/can not be prefixed with a '.'. Fixes #47
2014-07-24Update tests to support recent cli and core changesGravatar Jon Bernard 1-17/+20
2014-07-14Mark known failing tests as suchGravatar Jon Bernard 1-0/+3
2014-07-11Cleanup imports and move __version__ to __init__.pyGravatar Jon Bernard 1-14/+14
2014-07-10Remove executable bit from test_basic.pyGravatar Jon Bernard 1-0/+0
2014-07-07Add unit test for adding a package file via CLIGravatar Jon Bernard 1-0/+24
Re #20
2014-07-07Remove accidental tabs in unit testsGravatar Jon Bernard 1-6/+6
Python 2 will overlook this and continue executing, but python 3 will issue an error and exit.
2014-07-07Move tests into a directoryGravatar Jon Bernard 1-0/+390
I'm hoping to add more tests for specific features and break then into separate files so things are a bit easier to manage.