As a: User
I need: the ability to create multiple RESTful counters
So that: I can keep track of multiple hit targets
Assumptions:
- We will implement using REST API guidelines
- Add ability to create multiple named counters
- Add ability to update counters by name
Tasks:
Acceptance Criteria:
Given I have a multi-counter ability
When I create a counter named foo
And I update the counter named foo to 1
And I call the hit /counters/foo URL
Then I should see 1 returned from the service
As a: User
I need: the ability to create multiple RESTful counters
So that: I can keep track of multiple hit targets
Assumptions:
Tasks:
/URL to returnjsonmessage/counterto/countersGETto only return the counterPOSTto create new countersPUTto update multiple countersAcceptance Criteria: