jack-turk-5 / onward

0 stars 6 forks source link

Controller tests #14

Open jack-turk-5 opened 4 months ago

jack-turk-5 commented 4 months ago

All crud (Create Read Update Delete) operations will need to have endpoints in each controller class. Create tests and note any missing endpoints in a comment on this issue thread. The create should create and store a new instance of object in db, read should retrieve a list of all the objects of that type that have been created and stored in db (you will need to create dummy objects in your db instance to test this), update should change values as appropriate, and delete should remove an item from db.

bjstee commented 4 months ago

Will take care of this. I'll follow up once progress is made.