blob: 421bcbcaf22d230db45e3070e1d8a71ea8fd908a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
{-# OPTIONS_GHC -fno-warn-unused-imports #-}
-- |
-- Module : Main
-- Copyright : (c) 2013-2016 Brendan Hay
-- License : Mozilla Public License, v. 2.0.
-- Maintainer : Brendan Hay <brendan.g.hay@gmail.com>
-- Stability : auto-generated
-- Portability : non-portable (GHC extensions)
--
module Main (main) where
import Test.Tasty
import Test.AWS.Discovery
import Test.AWS.Discovery.Internal
main :: IO ()
main = defaultMain $ testGroup "Discovery"
[ testGroup "tests" tests
, testGroup "fixtures" fixtures
]
|