Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-platform
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
edx-platform
Commits
e59d3459
Commit
e59d3459
authored
May 21, 2013
by
Ned Batchelder
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use a different arbitrary dotted module, which Christina doesn't already have imported
parent
15894833
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
3 deletions
+6
-3
common/lib/capa/capa/safe_exec/tests/test_lazymod.py
+6
-3
No files found.
common/lib/capa/capa/safe_exec/tests/test_lazymod.py
View file @
e59d3459
...
...
@@ -39,6 +39,9 @@ class TestLazyMod(unittest.TestCase):
self
.
assertEqual
(
hsv
[
0
],
0.25
)
def
test_dotted
(
self
):
self
.
assertNotIn
(
"email.utils"
,
sys
.
modules
)
email_utils
=
LazyModule
(
"email.utils"
)
self
.
assertEqual
(
email_utils
.
quote
(
'"hi"'
),
r'\"hi\"'
)
# wsgiref is a module with submodules that is not already imported.
# Any similar module would do. This test demonstrates that the module
# is not already im
self
.
assertNotIn
(
"wsgiref.util"
,
sys
.
modules
)
wsgiref_util
=
LazyModule
(
"wsgiref.util"
)
self
.
assertEqual
(
wsgiref_util
.
guess_scheme
({}),
"http"
)
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