JCBeldo / b2-mid-mod

A practice mid-mod assessment for Backend Module 2

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Practice Mid-Mod

Ticket, Please

Read user stories very carefully.

Fork and clone repo.

When time is up, submit pull request.

Overview

We are creating an application to track departments, employees and tickets.

  • Departments have a name and a floor.

    • ex. name: ‘IT’, floor: ‘Basement’
  • Employees have a name, and level

    • ex. name: ‘Christina Aguilera’, level: 2
  • Tickets have a subject and an age

    • ex. subject: ‘printers broken’, age: 5
  • Departments have many Employees

  • Employees belong to a Department

  • Employees have many Tickets

  • Tickets can belong to many Employees

Instructions

  • You will need to create all the migrations.
  • You do not need to test for validations, but you can if you want to practice.
  • Test coverage should be > 98% for features, and 100% for models.
  • Time-box yourself to 3 hours maximum.
  • Complete the relationships described first, then move onto the user stories below.

User Stories

Story 1

Department Index

As a user,
When I visit the Department index page,
I see each department's name and floor
And underneath each department, I can see the names of all of its employees

Story 2

Employee Show

As a user,
When I visit the Employee show page,
I see the employee's name, department
and a list of all of their tickets from oldest to youngest.
I also see the oldest ticket assigned to the employee listed separately

Story 3

As a user,
When I visit the employee show page,
I do not see any tickets listed that are not assigned to the employee
and I see a form to add a ticket to this department.
When I fill in the form with the id of a ticket that already exists in the database
and I click submit
Then I am redirected back to that employees show page
and I see the ticket's subject now listed.
(you do not have to test for sad path, for example if the id does not match an existing ticket.)

Extension

Best Friends

As a user,
When I visit an employee's show page
I see that employees name and level
and I see a unique list of all the other employees that this employee shares tickets with

About

A practice mid-mod assessment for Backend Module 2


Languages

Language:Ruby 80.3%Language:HTML 14.7%Language:JavaScript 3.1%Language:CSS 1.9%