Acceptance tests for grades download

Refactor instructor dash acceptance tests.
Add additional acceptance tests for buttons on 'Data Download' tab.

LMS-58
This commit is contained in:
Sarina Canelake
2013-11-25 18:19:25 -05:00
parent c547ac7286
commit b406ba0f83
8 changed files with 275 additions and 47 deletions

View File

@@ -54,6 +54,11 @@ def register_by_course_id(course_id, username='robot', password='test', is_staff
@world.absorb
def enroll_user(user, course_id):
# Activate user
registration = world.RegistrationFactory(user=user)
registration.register(user)
registration.activate()
# Enroll them in the course
CourseEnrollment.enroll(user, course_id)