-
Notifications
You must be signed in to change notification settings - Fork 448
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Create Quality Assurance table for Delete Task API #757 #816
Conversation
Codecov Report
@@ Coverage Diff @@
## develop #816 +/- ##
========================================
Coverage 95.84% 95.84%
========================================
Files 95 95
Lines 5200 5200
========================================
Hits 4984 4984
Misses 216 216 |
docs/quality-assurance-test-cases.md
Outdated
|
||
**Service:** DELETE /mentorship_relation/{request_id}/task/{task_id} | ||
| Test Case | Outcome | |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| ------------- | ------------- |
| Logged in user delete a task from an existing request in the ACCEPTED state| Success |
| Logged in user tries to delete a task whose id does not exist from an existing request in the ACCEPTED state (the task does not exist) | Fail |
| Logged in user tries to delete a task from a non-existing request (Mentorship relation does not exist) in the ACCEPTED state | Fail |
| Logged in user tries to delete a task from a request which the user is not a mentor nor a mentee | Fail |
| Non-Logged in user tries to delete a task from an existing request in the ACCEPTED state | Fail |
A nitpick. Can you uniformly space out the table in markdown for uniformity with other tables?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, precisely.
@dowenrei can you please resolve the merge conflicts?? |
@dowenrei are you working on this? |
I'm not authorized to solve this conflict. |
You can since this is a pull request from your fork. Just make the necessary changes locally and push them |
@dowenrei hey any updates? |
@dowenrei closing this due to inactivity |
Description
Added test cases for Delete Task API and create a heading "Task" for Create, Update and Delete Task.
Fixes #757
Type of Change:
Code/Quality Assurance Only