File: Tests.hs

package info (click to toggle)
haskell-wreq 0.5.4.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 380 kB
  • sloc: haskell: 2,992; makefile: 25
file content (23 lines) | stat: -rw-r--r-- 406 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{-# LANGUAGE CPP #-}

module Main (main) where

import Test.Framework (testGroup)
import UnitTests (testWith)
import qualified Properties.Store

#if defined(AWS_TESTS)
import qualified AWS (tests)
#endif

main :: IO ()
main = do
#if defined(AWS_TESTS)
  awsTests <- AWS.tests
#else
  let awsTests = testGroup "aws" []
#endif
  testWith [
      testGroup "store" Properties.Store.tests
    , awsTests
    ]