blob: 60c4cc460f47f1c600a1ac0876b8525e36d94991 (
plain) (
blame)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
 | from dotfiles.dotfile import Dotfile
from dotfiles.repository import Repository
def test_list(tmpdir):
    repo = tmpdir.ensure("Dotfiles", dir=1)
    name = tmpdir.join(".vimrc")
    target = repo.ensure("vimrc")
    dotfile = Dotfile(name, target)
    repository = Repository(repo, tmpdir)
    # manual discovery
    repository.dotfiles = [dotfile, dotfile, dotfile]
    expected_list = ("\n"
                     ".vimrc -> Dotfiles/vimrc (unknown)\n"
                     ".vimrc -> Dotfiles/vimrc (unknown)\n"
                     ".vimrc -> Dotfiles/vimrc (unknown)")
    assert expected_list == str(repository)
def test_discovery(tmpdir):
    repo = tmpdir.ensure("Dotfiles", dir=1)
    tmpdir.join('.bashrc').mksymlinkto(repo.ensure('bashrc'))
    tmpdir.join('.vimrc').mksymlinkto(repo.ensure('vimrc'))
    repository = Repository(repo, tmpdir)
    expected_list = ("\n"
                     ".bashrc -> Dotfiles/bashrc (unknown)\n"
                     ".vimrc -> Dotfiles/vimrc (unknown)")
    assert expected_list == str(repository)
 |