diff options
author | BrendanHay <> | 2016-06-03 09:06:00 (GMT) |
---|---|---|
committer | hdiff <hdiff@hdiff.luite.com> | 2016-06-03 09:06:00 (GMT) |
commit | f1b877ace3d5d45f7dc2f9202f489d53344e4956 (patch) | |
tree | 07a21c81b6fabb1d6ffcbbbb9ba2f03f21dc32c2 /test/Main.hs |
version 1.4.21.4.2
Diffstat (limited to 'test/Main.hs')
-rw-r--r-- | test/Main.hs | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/test/Main.hs b/test/Main.hs new file mode 100644 index 0000000..421bcbc --- /dev/null +++ b/test/Main.hs @@ -0,0 +1,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 + ] |