amazonka-lambda-1.6.0: test/Test/AWS/Lambda.hs
{-# LANGUAGE OverloadedStrings #-}
-- Module : Test.AWS.Lambda
-- Copyright : (c) 2013-2018 Brendan Hay
-- License : This Source Code Form is subject to the terms of
-- the Mozilla Public License, v. 2.0.
-- A copy of the MPL can be found in the LICENSE file or
-- you can obtain it at http://mozilla.org/MPL/2.0/.
-- Maintainer : Brendan Hay <brendan.g.hay@gmail.com>
-- Stability : experimental
-- Portability : non-portable (GHC extensions)
module Test.AWS.Lambda
( tests
, fixtures
) where
import Network.AWS.Lambda
import Network.AWS.Lens ((&), (?~))
import Test.AWS.Gen.Lambda
import Test.Tasty
tests :: [TestTree]
tests = []
fixtures :: [TestTree]
fixtures =
[ testGroup "response"
[ responseInvoke $
invokeResponse 200 & irsPayload ?~ ""
]
]