mirror of
https://github.com/Start9Labs/registry.git
synced 2026-03-26 10:21:51 +00:00
16 lines
397 B
Haskell
16 lines
397 B
Haskell
{-# LANGUAGE TypeFamilies #-}
|
|
|
|
module Handler.AppSpec (spec) where
|
|
|
|
import Startlude
|
|
import TestImport
|
|
|
|
spec :: Spec
|
|
spec = describe "GET /apps" $
|
|
withApp $ it "returns list of apps" $ do
|
|
request $ do
|
|
setMethod "GET"
|
|
setUrl ("/apps" :: Text)
|
|
bodyContains "bitcoind"
|
|
bodyContains "version: 0.18.1"
|
|
statusIs 200 |