diff options
author | Joey Hess <joey@kitenet.net> | 2013-03-13 16:16:01 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2013-03-13 16:30:34 -0400 |
commit | 571cd1c57aeb4e8071b30caf529a0845e8ddc7cf (patch) | |
tree | e895c99334d675cec3f7996cb6c298fb7751b33b /Test.hs | |
parent | 89cc1d2a38a1abaaecdfb7766739f3c2b5dbf963 (diff) |
split cost out into its own module
Added a function to insert a new cost into a list, which could be used to
asjust costs after a drag and drop.
Diffstat (limited to 'Test.hs')
-rw-r--r-- | Test.hs | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -42,7 +42,7 @@ import qualified Logs.Presence import qualified Remote import qualified Types.Key import qualified Types.Messages -import qualified Config +import qualified Config.Cost import qualified Crypto import qualified Utility.Path import qualified Utility.FileMode @@ -102,7 +102,7 @@ quickcheck = , check "prop_parentDir_basics" Utility.Path.prop_parentDir_basics , check "prop_relPathDirToFile_basics" Utility.Path.prop_relPathDirToFile_basics , check "prop_relPathDirToFile_regressionTest" Utility.Path.prop_relPathDirToFile_regressionTest - , check "prop_cost_sane" Config.prop_cost_sane + , check "prop_cost_sane" Config.Cost.prop_cost_sane , check "prop_hmacWithCipher_sane" Crypto.prop_hmacWithCipher_sane , check "prop_TimeStamp_sane" Logs.UUIDBased.prop_TimeStamp_sane , check "prop_addLog_sane" Logs.UUIDBased.prop_addLog_sane |