- use new query system for command line too, filterspec is no more - move unit tests near the code they test, run them in bottom up order, add more - more precise Show instances, used for debugging not ui
		
			
				
	
	
		
			25 lines
		
	
	
		
			540 B
		
	
	
	
		
			Haskell
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			540 B
		
	
	
	
		
			Haskell
		
	
	
	
	
	
| module Hledger (
 | |
|                 module Hledger.Data
 | |
|                ,module Hledger.Data.Query
 | |
|                ,module Hledger.Read
 | |
|                ,module Hledger.Reports
 | |
|                ,module Hledger.Utils
 | |
|                ,tests_Hledger
 | |
| )
 | |
| where
 | |
| import Test.HUnit
 | |
| 
 | |
| import Hledger.Data
 | |
| import Hledger.Data.Query
 | |
| import Hledger.Read hiding (samplejournal)
 | |
| import Hledger.Reports
 | |
| import Hledger.Utils
 | |
| 
 | |
| tests_Hledger = TestList
 | |
|     [
 | |
|      tests_Hledger_Data
 | |
|     ,tests_Hledger_Data_Query
 | |
|     ,tests_Hledger_Read
 | |
|     ,tests_Hledger_Reports
 | |
|     ]
 |