Remove origin test to ghcup-test subdir
This commit is contained in:
40
test/ghcup-test/GHCup/Prelude/File/Posix/TraversalsSpec.hs
Normal file
40
test/ghcup-test/GHCup/Prelude/File/Posix/TraversalsSpec.hs
Normal file
@@ -0,0 +1,40 @@
|
||||
{-# LANGUAGE CPP #-}
|
||||
|
||||
module GHCup.Prelude.File.Posix.TraversalsSpec where
|
||||
|
||||
|
||||
#if !defined(IS_WINDOWS)
|
||||
import GHCup.Prelude.File.Posix.Traversals
|
||||
|
||||
import Control.Monad.IO.Class (liftIO)
|
||||
import Data.List
|
||||
import System.Posix.Directory
|
||||
import Unsafe.Coerce
|
||||
#endif
|
||||
|
||||
import Test.Hspec
|
||||
|
||||
|
||||
|
||||
spec :: Spec
|
||||
spec = do
|
||||
#if defined(IS_WINDOWS)
|
||||
pure ()
|
||||
#else
|
||||
-- https://github.com/haskell/ghcup-hs/issues/415
|
||||
describe "GHCup.Prelude.File.Posix.Traversals" $ do
|
||||
it "readDirEnt" $ do
|
||||
dirstream <- liftIO $ openDirStreamPortable "test/ghcup-test/data"
|
||||
(dt1, fp1) <- readDirEntPortable dirstream
|
||||
(dt2, fp2) <- readDirEntPortable dirstream
|
||||
(dt3, fp3) <- readDirEntPortable dirstream
|
||||
(dt4, fp4) <- readDirEntPortable dirstream
|
||||
let xs = sortOn snd [ (dt1, fp1), (dt2, fp2)
|
||||
, (dt3, fp3), (dt4, fp4)
|
||||
]
|
||||
xs `shouldBe` [(unsafeCoerce (4 :: Int),".")
|
||||
,(unsafeCoerce (4 :: Int),"..")
|
||||
,(unsafeCoerce (4 :: Int),"dir")
|
||||
,(unsafeCoerce (8 :: Int),"file")
|
||||
]
|
||||
#endif
|
||||
Reference in New Issue
Block a user