--- a/tests/test_incoming.py Wed Jul 13 18:25:43 2016 +0800
+++ b/tests/test_incoming.py Thu Jul 14 17:04:03 2016 +0800
result = parse_project_url('https://example.com/alice/hello-world')
assert result == ('example.com', 'alice', 'hello-world')
+ result = parse_project_url('https://example.com/bob/a/b/c/')
+ assert result == ('example.com', 'bob', 'a/b/c')
result = parse_project_url('~alice/hello-world')
assert result == ('self', '~alice', 'hello-world')