Adds */* as a valid media type that will return json [fix #274]

This commit is contained in:
Diogo Biazus
2015-09-01 15:57:59 -04:00
parent 3d670b9c03
commit 89c581816e
2 changed files with 11 additions and 4 deletions
+5
View File
@@ -184,6 +184,11 @@ spec =
(acceptHdrs "text/unknowntype") ""
`shouldRespondWith` 415
it "should respond correctly to */* in accept header" $
request methodGet "/simple_pk"
(acceptHdrs "*/*") ""
`shouldRespondWith` 200
it "should respond correctly to multiple types in accept header" $
request methodGet "/simple_pk"
(acceptHdrs "text/unknowntype, text/csv") ""