and testGroup. Replacing these removes a layer of indirection, and reduces the need to depend on Hledger.Utils.Test.
		
			
				
	
	
		
			22 lines
		
	
	
		
			397 B
		
	
	
	
		
			Haskell
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			397 B
		
	
	
	
		
			Haskell
		
	
	
	
	
	
| {-# LANGUAGE OverloadedStrings #-}
 | |
| 
 | |
| module Hledger (
 | |
|   module X
 | |
|  ,tests_Hledger
 | |
| )
 | |
| where
 | |
| 
 | |
| import           Hledger.Data    as X
 | |
| import           Hledger.Read    as X
 | |
| import           Hledger.Reports as X
 | |
| import           Hledger.Query   as X
 | |
| import           Hledger.Utils   as X
 | |
| 
 | |
| tests_Hledger = testGroup "Hledger" [
 | |
|    tests_Data
 | |
|   ,tests_Query
 | |
|   ,tests_Read
 | |
|   ,tests_Reports
 | |
|   ,tests_Utils
 | |
|   ]
 |