-
Notifications
You must be signed in to change notification settings - Fork 252
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Victor Tso
committed
Oct 15, 2020
1 parent
e5335b1
commit ad97419
Showing
3 changed files
with
25 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,8 +23,8 @@ def test_create_poetry(): | |
assert package.authors == ["Sébastien Eustace <[email protected]>"] | ||
assert package.license.id == "MIT" | ||
assert ( | ||
package.readme.relative_to(fixtures_dir).as_posix() | ||
== "sample_project/README.rst" | ||
package.readme.relative_to(fixtures_dir).as_posix() | ||
== "sample_project/README.rst" | ||
) | ||
assert package.homepage == "https://python-poetry.org" | ||
assert package.repository_url == "https://github.com/python-poetry/poetry" | ||
|
@@ -95,8 +95,8 @@ def test_create_poetry(): | |
assert functools32.name == "functools32" | ||
assert functools32.pretty_constraint == "^3.2.3" | ||
assert ( | ||
str(functools32.marker) | ||
== 'python_version ~= "2.7" and sys_platform == "win32" or python_version in "3.4 3.5"' | ||
str(functools32.marker) | ||
== 'python_version ~= "2.7" and sys_platform == "win32" or python_version in "3.4 3.5"' | ||
) | ||
|
||
assert "db" in package.extras | ||
|