(cabal check) Add "No internal name clash" test
[cabal.git] / cabal-testsuite / PackageTests / Regression / T4270 / Test.hs
blob24dbc04dca3fee85787c40fbb7326eb1d7fab4c4
1 module Test where
3 import Lib
5 import Distribution.TestSuite
7 tests :: IO [Test]
8 tests = return [Test bar]
9 where
10 bar = TestInstance
11 { run = return $ Finished run
12 , name = "test"
13 , tags = []
14 , options = []
15 , setOption = \_ _ -> Right bar
17 run = if foo then Pass else Fail "should pass"