Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
setuptools
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jérome Perrin
setuptools
Commits
d4cd26a8
Commit
d4cd26a8
authored
Jul 15, 2013
by
Jason R. Coombs
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added a couple of additional tests, including one capturing #42.
parent
fdb21220
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
0 deletions
+14
-0
setuptools/tests/test_packageindex.py
setuptools/tests/test_packageindex.py
+14
-0
No files found.
setuptools/tests/test_packageindex.py
View file @
d4cd26a8
...
...
@@ -152,3 +152,17 @@ class TestContentCheckers(unittest.TestCase):
self
.
assertEqual
(
checker
.
hash
.
hexdigest
(),
'f12895fdffbd45007040d2e44df98478'
)
self
.
assertTrue
(
checker
.
check
())
def
test_other_fragment
(
self
):
"Content checks should succeed silently if no hash is present"
checker
=
setuptools
.
package_index
.
HashChecker
.
from_url
(
'http://foo/bar#something%20completely%20different'
)
checker
.
feed
(
'anything'
.
encode
(
'ascii'
))
self
.
assertTrue
(
checker
.
check
())
def
test_blank_md5
(
self
):
"Content checks should succeed if a hash is empty"
checker
=
setuptools
.
package_index
.
HashChecker
.
from_url
(
'http://foo/bar#md5='
)
checker
.
feed
(
'anything'
.
encode
(
'ascii'
))
self
.
assertTrue
(
checker
.
check
())
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment