Open
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?