-
-
Notifications
You must be signed in to change notification settings - Fork 362
Open
Labels
bugThis issue/PR relates to a bug.This issue/PR relates to a bug.
Description
The following test fails
def test_gitignore_global_file(File):
gitignore_global = File('~/.gitignore_global')
assert gitignore_global.exists
This one succeeds
def test_gitignore_global_file(File):
gitignore_global = File('/Users/me/.gitignore_global')
assert gitignore_global.exists
In order to make the test succeed I have to use /Users/me
instead of tilde.
Is it correct?
Metadata
Metadata
Assignees
Labels
bugThis issue/PR relates to a bug.This issue/PR relates to a bug.