File: TH.hs

package info (click to toggle)
haskell-store 0.7.18-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 284 kB
  • sloc: haskell: 2,663; makefile: 9
file content (13 lines) | stat: -rw-r--r-- 228 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
{-# LANGUAGE CPP #-}

-- Just exists due to TH stage restriction... The actual testing TH code
-- is in "Data.Store.TH".
module Data.StoreSpec.TH where

verbose :: Bool
verbose =
#if VERBOSE_TEST
    True
#else
    False
#endif