-
Notifications
You must be signed in to change notification settings - Fork 26
Open
Labels
Description
giturlparse/giturlparse/tests/test_parse.py
Line 381 in a6b48da
| "branch": "", |
from giturlparse import parse as giturlparse
p = giturlparse("https://github.com/nephila/giturlparse/tree/master/changes")
print (p.branch, p.path)
assert p.branch == "master"
assert p.path == "changes"