Chamilo is a learning management system focused on ease of use and accessibility
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
chamilo-lms/features/backend/course/CourseSessionRelationship.f...

32 lines
1.3 KiB

@session
Feature: Course Session Relationship
In order to setup a course session
As a teacher
I need a working relationship
Background:
Given there are following users:
| username | email | plain_password | enabled | groups |
| student | student@example.com | student | yes | Students |
| coach | coach@example.com | coach | yes | Teachers |
| drh | drh@example.com | drh | yes | Teachers |
Given I have a course "My course"
Given I have a session "My session"
Scenario: A session contains a course
When I add session "My session" to course "My course"
Then I should find a course "My course" in session "My session"
Scenario: A course in a session contains a student
When I add student "student" to course "My course" in session "My session"
Then I should find a user "student" in course "My course" in session "My session"
Scenario Outline: A course in a session contains a user with status
When I add user with status "<status>" with username "<username>" in course "My course" in session "My session"
Then I should find a user "<username>" with status "<status>" in course "My course" in session "My session"
Examples:
| username | status |
| student | student |
| drh | drh |
| coach | coach |