Skip to content

Commit

Permalink
Test debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
alichtman committed Nov 16, 2018
1 parent 7e54a4f commit 5a6dfad
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions tests/test_backups.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,8 @@ def test_backup_dotfiles(self):
backup_dotfiles(dotfiles_path, home_path=FAKE_HOME_DIR, skip=True)
assert os.path.isdir(dotfiles_path)
for path in DOTFILES:
print(os.listdir(dotfiles_path))
print(path + " was backed up.")
print("DOTFILES DIRECTORY CONTENTS:", os.listdir(dotfiles_path))
print(path + " being backed up.")
print("CWD:", os.getcwd())
backed_up_dot = os.path.join(dotfiles_path, os.path.split(path)[-1])
assert os.path.isfile(backed_up_dot)

0 comments on commit 5a6dfad

Please sign in to comment.