Test what you learned in the MSM Queries project with a debugging exercises.
Make your app function like this target:
https://classroom-queries-debug.matchthetarget.com
The starter code is incomplete and buggy.
- Start the web server by running
bin/server.
- Navigate to your live application preview.
- As you work, remember to navigate to
/git and commit often as you work.
- Debug until your app works like the target!
- Run
rails grade as often as you like to see how you are doing.
Click here to see names of each test
/courses lists the titles of each Course
/courses lists the term offered for each Course
/courses lists the name of the Department for each Course
/courses has a link with the text 'Show details' to the details page of each Course
/courses has a link to the details page of each Course's Department
/courses/[COURSE ID] displays the name of the Course's Department
/courses/[COURSE ID] has a link to the details page of the Course's Department
/courses/[COURSE ID] displays the number of enrollments there are for the Course
/courses/[COURSE ID] displays the names of the Students enrolled in the Course
/courses/[COURSE ID] has the names of the enrolled Students link the student details page
/departments lists the names of each Department record
/departments/[DEPARTMENT ID] displays the name of the Department record
/departments/[DEPARTMENT ID] displays the number of Courses in the Department
/departments/[DEPARTMENT ID] displays the titles of the Courses in the Department
/departments/[DEPARTMENT ID] displays the titles of the Courses in the Department as links to the Course page
/students lists the first names of each Student
/students lists the last names of each Student
/students lists the email addresses of each Student
/students has a link 'Show details' to the details page of each Student
/students/[STUDENT ID] displays the number of courses the Student is enrolled in
/students/[STUDENT ID] displays the titles of the courses the Student is enrolled in
/students/[STUDENT ID] the Course titles link to the details page of the Course