Commit 49b1fb29 by Ashwin Nair Committed by Randy Döring

Add test for parsing dependency specification

parent 97b547f3
......@@ -35,6 +35,15 @@ if TYPE_CHECKING:
"git+https://github.com/demo/demo.git@main",
{"git": "https://github.com/demo/demo.git", "name": "demo", "rev": "main"},
),
(
"git+https://github.com/demo/subdirectories.git@main#subdirectory=two",
{
"git": "https://github.com/demo/subdirectories.git",
"name": "two",
"rev": "main",
"subdirectory": "two",
},
),
("demo", {"name": "demo"}),
("demo@1.0.0", {"name": "demo", "version": "1.0.0"}),
("demo@^1.0.0", {"name": "demo", "version": "^1.0.0"}),
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment