File tree 3 files changed +14
-10
lines changed
3 files changed +14
-10
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ cabal-version: 1.12
4
4
--
5
5
-- see: https://github.com/sol/hpack
6
6
--
7
- -- hash: 2eaf7b48d485892509d025b3573af73d212bf5d4cf8b7188580eaf6e00ddd6a6
7
+ -- hash: 9d49e4b01dbbf18b3c025d55306e013c1fdcc31b99b3e22eac6f4ee24dd33f9b
8
8
9
9
name : ble
10
10
version : 0.4.2
@@ -204,14 +204,17 @@ test-suite spec
204
204
default-extensions : AutoDeriveTypeable ConstraintKinds DataKinds DefaultSignatures DeriveFoldable DeriveFunctor DeriveGeneric DeriveTraversable FlexibleContexts FlexibleInstances FunctionalDependencies GADTs KindSignatures MultiParamTypeClasses OverloadedStrings RankNTypes ScopedTypeVariables TypeFamilies TypeOperators
205
205
ghc-options : -Wall
206
206
build-depends :
207
- QuickCheck >= 2.8 && < 2.10
207
+ Glob >= 0.7 && < 0.8
208
+ , QuickCheck >= 2.8 && < 2.10
208
209
, base >= 4.8 && < 4.10
209
210
, ble
210
211
, bytestring >= 0.10 && < 0.11
211
212
, cereal >= 0.4 && < 0.6
212
213
, containers >= 0.5 && < 0.6
213
214
, d-bus >= 0.1.5 && < 0.2
214
215
, data-default-class >= 0.0 && < 0.2
216
+ , doctest >= 0.9 && < 0.12
217
+ , filepath
215
218
, hslogger
216
219
, hspec > 2 && < 3
217
220
, microlens >= 0.4 && < 0.5
@@ -223,6 +226,7 @@ test-suite spec
223
226
, text >= 1 && < 2
224
227
, transformers >= 0.4 && < 0.6
225
228
, uuid >= 1 && < 2
229
+ , yaml == 0.8. *
226
230
if flag(hasDBus)
227
231
cpp-options : -DDBusMock
228
232
default-language : Haskell2010
Original file line number Diff line number Diff line change @@ -103,13 +103,13 @@ tests:
103
103
- quickcheck-instances >= 0.3 && < 0.4
104
104
- process >= 1.2 && < 1.5
105
105
- hslogger
106
- # doctest:
107
- # main: Doctest.hs
108
- # source-dirs: test
109
- # dependencies:
110
- # - doctest >= 0.9 && < 0.12
111
- # - Glob >= 0.7 && < 0.8
112
- # - yaml == 0.8.*
106
+ - doctest >= 0.9 && < 0.12
107
+ - Glob >= 0.7 && < 0.8
108
+ - yaml == 0.8.*
109
+ - filepath
110
+ doctest :
111
+ main : Doctest.hs
112
+ source-dirs : test
113
113
114
114
executables :
115
115
readme :
Original file line number Diff line number Diff line change 1
- module Main (main ) where
1
+ module Doctest (main ) where
2
2
3
3
-- Runs doctest on all files in "src" dir. Assumes:
4
4
-- (a) You are using hpack
You can’t perform that action at this time.
0 commit comments