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
0349e157
Commit
0349e157
authored
Jan 15, 2013
by
Alexander Kryklia
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
renamed graders to verifiers
parent
63b79f76
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
4 deletions
+4
-4
common/lib/capa/capa/capa_problem.py
+3
-3
common/lib/capa/capa/verifiers/__init__.py
+0
-0
common/lib/capa/capa/verifiers/draganddrop.py
+0
-0
common/lib/capa/capa/verifiers/tests.py
+1
-1
No files found.
common/lib/capa/capa/capa_problem.py
View file @
0349e157
...
...
@@ -34,8 +34,8 @@ import chem
import
chem.chemcalc
import
chem.chemtools
import
chem.miller
import
grad
ers
import
grad
ers.draganddrop
import
verifi
ers
import
verifi
ers.draganddrop
import
calc
from
correctmap
import
CorrectMap
...
...
@@ -72,7 +72,7 @@ global_context = {'random': random,
'chemcalc'
:
chem
.
chemcalc
,
'chemtools'
:
chem
.
chemtools
,
'miller'
:
chem
.
miller
,
'draganddrop'
:
grad
ers
.
draganddrop
}
'draganddrop'
:
verifi
ers
.
draganddrop
}
# These should be removed from HTML output, including all subelements
html_problem_semantics
=
[
"codeparam"
,
"responseparam"
,
"answer"
,
"script"
,
"hintgroup"
,
"openendedparam"
,
"openendedrubric"
]
...
...
common/lib/capa/capa/
grad
ers/__init__.py
→
common/lib/capa/capa/
verifi
ers/__init__.py
View file @
0349e157
File moved
common/lib/capa/capa/
grad
ers/draganddrop.py
→
common/lib/capa/capa/
verifi
ers/draganddrop.py
View file @
0349e157
File moved
common/lib/capa/capa/
grad
ers/tests.py
→
common/lib/capa/capa/
verifi
ers/tests.py
View file @
0349e157
...
...
@@ -68,7 +68,7 @@ class Test_DragAndDrop_Grade(unittest.TestCase):
user_input
=
'{"use_targets": true, "draggables": [{"1": [10,10]},
\
{"name_with_icon": [[10,10],4]}]}'
correct_answer
=
{
'1'
:
[
10
,
10
],
'name_with_icon'
:
[[
10
,
10
],
4
]}
self
.
assert
Tru
e
(
draganddrop
.
grade
(
user_input
,
correct_answer
))
self
.
assert
Fals
e
(
draganddrop
.
grade
(
user_input
,
correct_answer
))
def
test_position_and_targets
(
self
):
user_input
=
'{"use_targets": false,
\
...
...
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