The changes here are from fixing stack build with LTS 15.8 (GHC 8.8.3) to be warning-free. Most if not all come from the newer protolude version, which adds some things like `unwords`. So to make sure that we don't get unused import warnings with newer stackage, this both raises the protolude lower bound and removes these imports.
25 lines
656 B
Haskell
25 lines
656 B
Haskell
module Feature.UnicodeSpec where
|
|
|
|
import Network.Wai (Application)
|
|
|
|
import Test.Hspec
|
|
import Test.Hspec.Wai
|
|
import Test.Hspec.Wai.JSON
|
|
|
|
import Protolude hiding (get)
|
|
import SpecHelper
|
|
|
|
spec :: SpecWith ((), Application)
|
|
spec =
|
|
describe "Reading and writing to unicode schema and table names" $
|
|
it "Can read and write values" $ do
|
|
get "/%D9%85%D9%88%D8%A7%D8%B1%D8%AF"
|
|
`shouldRespondWith` "[]"
|
|
|
|
void $ post "/%D9%85%D9%88%D8%A7%D8%B1%D8%AF"
|
|
[json| { "هویت": 1 } |]
|
|
|
|
get "/%D9%85%D9%88%D8%A7%D8%B1%D8%AF"
|
|
`shouldRespondWith` [json| [{ "هویت": 1 }] |]
|
|
{ matchHeaders = [matchContentTypeJson] }
|