Merge pull request #10647 from MercuryTechnologies/improve-tar-errors
[cabal.git] / cabal-testsuite / PackageTests / DuplicateModuleName / tests / Foo.hs
blobc6c894ffc58f949fc2ac91ceac14d10becdaa636
1 {-# LANGUAGE PackageImports #-}
2 module Foo where
4 import Distribution.TestSuite
5 import qualified "DuplicateModuleName" Foo as T
7 tests :: IO [Test]
8 tests = do
9 r <- T.tests
10 return $ [Test $ TestInstance
11 { run = return (Finished (Fail "B"))
12 , name = "test B"
13 , tags = []
14 , options = []
15 , setOption = \_ _-> Left "No Options"
16 }] ++ r
18 this_is_test = True