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
3313b755
Commit
3313b755
authored
Feb 23, 2016
by
Sanford Student
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
MA-1038
parent
e4b59c31
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
2 deletions
+7
-2
lms/djangoapps/mobile_api/testutils.py
+7
-2
No files found.
lms/djangoapps/mobile_api/testutils.py
View file @
3313b755
...
@@ -11,8 +11,9 @@ Test utilities for mobile API tests:
...
@@ -11,8 +11,9 @@ Test utilities for mobile API tests:
"""
"""
# pylint: disable=no-member
# pylint: disable=no-member
import
ddt
import
ddt
from
datetime
import
timedelta
from
django.utils
import
timezone
from
mock
import
patch
from
mock
import
patch
from
unittest
import
skip
from
django.core.urlresolvers
import
reverse
from
django.core.urlresolvers
import
reverse
...
@@ -168,9 +169,13 @@ class MobileCourseAccessTestMixin(MobileAPIMilestonesMixin):
...
@@ -168,9 +169,13 @@ class MobileCourseAccessTestMixin(MobileAPIMilestonesMixin):
response
=
self
.
api_response
(
expected_response_code
=
None
,
course_id
=
non_existent_course_id
)
response
=
self
.
api_response
(
expected_response_code
=
None
,
course_id
=
non_existent_course_id
)
self
.
verify_failure
(
response
)
# allow subclasses to override verification
self
.
verify_failure
(
response
)
# allow subclasses to override verification
@skip
# TODO fix this, see MA-1038
@patch.dict
(
'django.conf.settings.FEATURES'
,
{
'DISABLE_START_DATES'
:
False
})
@patch.dict
(
'django.conf.settings.FEATURES'
,
{
'DISABLE_START_DATES'
:
False
})
def
test_unreleased_course
(
self
):
def
test_unreleased_course
(
self
):
# ensure the course always starts in the future
# pylint: disable=attribute-defined-outside-init
self
.
course
=
CourseFactory
.
create
(
mobile_available
=
True
,
static_asset_path
=
"needed_for_split"
)
# pylint: disable=attribute-defined-outside-init
self
.
course
.
start
=
timezone
.
now
()
+
timedelta
(
days
=
365
)
self
.
init_course_access
()
self
.
init_course_access
()
self
.
_verify_response
(
self
.
ALLOW_ACCESS_TO_UNRELEASED_COURSE
,
StartDateError
(
self
.
course
.
start
))
self
.
_verify_response
(
self
.
ALLOW_ACCESS_TO_UNRELEASED_COURSE
,
StartDateError
(
self
.
course
.
start
))
...
...
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