https://github.com/nephila/giturlparse/blob/a6b48dad230d43393227ffdf52f2099db8038622/giturlparse/tests/test_parse.py#L381 ``` 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" ```
giturlparse/giturlparse/tests/test_parse.py
Line 381 in a6b48da