/ticket/list/

This commit is contained in:
jysperm
2014-04-29 00:12:30 +08:00
parent 87fe1019de
commit 600cf2ec38
2 changed files with 44 additions and 0 deletions

View File

@@ -64,3 +64,16 @@ frisby.create '/ticket/update/'
public: true
.expectStatus 200
.toss()
frisby.create '/ticket/list/'
.post "#{baseUrl}/ticket/list/",
status: 'open'
.expectStatus 200
.expectJSON '*',
status: 'open'
.expectJSONTypes '*',
id: String
title: String
type: String
updated_at: String
.toss()