You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As a User I need a way to remove a counter from the list So that it no longer shows up in the list of counters
Assumptions:
We can delete a counter in Redis
Acceptance Criteria:
Given that the counter `foo` exists
When I issue `GET /counters`
I should see `foo` in the list of counters
And I issue `DELETE /counters/foo`
Then the `foo` counter should be deleted
When I issue `GET /counters`
I should not see `foo` in the list of counters
The text was updated successfully, but these errors were encountered:
As a User
I need a way to remove a counter from the list
So that it no longer shows up in the list of counters
Assumptions:
Acceptance Criteria:
The text was updated successfully, but these errors were encountered: