Remove lint

This commit is contained in:
Joe Nelson
2015-02-15 16:31:53 -08:00
parent 5a1ae934b9
commit b88192f95a
2 changed files with 5 additions and 7 deletions
+1 -1
View File
@@ -6,5 +6,5 @@ machine:
version: 7.8.3
test:
post:
- cabal exec hlint src/*.hs test/**/*.hs
- cabal exec hlint -- -X QuasiQuotes src/*.hs test/**/*.hs
- cabal exec packdeps postgrest.cabal
+4 -6
View File
@@ -15,12 +15,10 @@ testSet = do
clearTable "items" >> clearTable "no_pk"
createItems 15
pool <- H.acquirePool pgSettings testPoolOpts
void . liftIO $ H.session pool $ H.tx Nothing $ do
mapM_ H.unitEx $ map (uncurry insertNoPk) [
("lick", "Fun")
, ("trick", "funky")
, ("barb", "foo")
, ("BARD", "FOOD")
void . liftIO $ H.session pool $ H.tx Nothing $
mapM_ (H.unitEx . uncurry insertNoPk) [
("lick", "Fun"), ("trick", "funky")
, ("barb", "foo"), ("BARD", "FOOD")
]
where