1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
|
{-# LANGUAGE OverloadedStrings #-}
module Main where
import Control.Monad
import System.Directory
import System.INotify as INotify
import Utils
file :: String
file = "hello"
write :: String -> IO ()
write path =
writeFile (path ++ '/':file) ""
remove :: String -> IO ()
remove path =
removeFile (path ++ '/':file)
action :: String -> IO ()
action path = do
write path
remove path
main :: IO ()
main =
inTestEnviron [AllEvents] action $ \ events -> do
when (expected ~= events)
testSuccess
putStrLn $ explainFailure expected events
testFailure
expected :: [Event]
expected =
[ Created False "hello"
, Opened False (Just "hello")
, Modified False (Just "hello")
, Closed False (Just "hello") True
, Deleted False "hello"
]
|