Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-ora2
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-ora2
Commits
152403bb
Commit
152403bb
authored
Feb 05, 2014
by
Stephen Sanchez
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixing time zone warning on tests.
parent
71130ce8
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
4 deletions
+6
-4
apps/openassessment/peer/test/test_api.py
+3
-2
apps/submissions/tests/test_api.py
+3
-2
No files found.
apps/openassessment/peer/test/test_api.py
View file @
152403bb
...
...
@@ -81,8 +81,9 @@ class TestApi(TestCase):
def
test_get_submission_to_evaluate
(
self
):
self
.
_create_student_and_submission
(
"Tim"
,
"Tim's answer"
,
MONDAY
)
self
.
_create_student_and_submission
(
"Bob"
,
"Bob's answer"
,
TUESDAY
)
self
.
_create_student_and_submission
(
"Sally"
,
"Sally's answer"
,
WEDNESDAY
)
self
.
_create_student_and_submission
(
"Sally"
,
"Sally's answer"
,
WEDNESDAY
)
self
.
_create_student_and_submission
(
"Jim"
,
"Jim's answer"
,
THURSDAY
)
submission
=
api
.
get_submission_to_evaluate
(
STUDENT_ITEM
)
...
...
apps/submissions/tests/test_api.py
View file @
152403bb
...
...
@@ -5,6 +5,7 @@ from django.db import DatabaseError
from
django.test
import
TestCase
from
nose.tools
import
raises
from
mock
import
patch
import
pytz
from
submissions.api
import
create_submission
,
get_submissions
,
SubmissionRequestError
,
SubmissionInternalError
from
submissions.models
import
Submission
...
...
@@ -62,8 +63,8 @@ class TestApi(TestCase):
self
.
_assert_submission
(
submission
,
ANSWER_ONE
,
1
,
1
)
def
test_get_latest_submission
(
self
):
past_date
=
datetime
.
date
(
2007
,
11
,
23
)
more_recent_date
=
datetime
.
date
(
2011
,
10
,
15
)
past_date
=
datetime
.
date
time
(
2007
,
9
,
12
,
0
,
0
,
0
,
0
,
pytz
.
UTC
)
more_recent_date
=
datetime
.
date
time
(
2007
,
9
,
13
,
0
,
0
,
0
,
0
,
pytz
.
UTC
)
create_submission
(
STUDENT_ITEM
,
ANSWER_ONE
,
more_recent_date
)
create_submission
(
STUDENT_ITEM
,
ANSWER_TWO
,
past_date
)
...
...
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