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
fdb21220
Commit
fdb21220
authored
Jul 15, 2013
by
Jason R. Coombs
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added a test to prove the basic usage of content checks
parent
95bf90f3
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
0 deletions
+11
-0
setuptools/tests/test_packageindex.py
setuptools/tests/test_packageindex.py
+11
-0
No files found.
setuptools/tests/test_packageindex.py
View file @
fdb21220
...
...
@@ -141,3 +141,14 @@ class TestPackageIndex(unittest.TestCase):
'reportlab-2.5.win-amd64-py2.7.exe'
),
(
'reportlab-2.5'
,
'2.7'
,
'win-amd64'
))
self
.
assertEqual
(
setuptools
.
package_index
.
parse_bdist_wininst
(
'reportlab-2.5.win-amd64.exe'
),
(
'reportlab-2.5'
,
None
,
'win-amd64'
))
class
TestContentCheckers
(
unittest
.
TestCase
):
def
test_md5
(
self
):
checker
=
setuptools
.
package_index
.
HashChecker
.
from_url
(
'http://foo/bar#md5=f12895fdffbd45007040d2e44df98478'
)
self
.
assertEqual
(
checker
.
hash
.
name
,
'md5'
)
checker
.
feed
(
'You should probably not be using MD5'
.
encode
(
'ascii'
))
self
.
assertEqual
(
checker
.
hash
.
hexdigest
(),
'f12895fdffbd45007040d2e44df98478'
)
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