module Database.Persist.Discover.ExeSpec where import Test.Hspec import Database.Persist.Discover.Exe import System.FilePath spec :: Spec spec = do describe "Render" do it "works" do shouldBe do render do "hello" "world" do "hello\nworld\n" describe "indent" do it "works" do shouldBe do render do "hello" indent 4 do "world" "goodbye" do "hello\n world\ngoodbye\n" describe "mkModulePieces" do let exPath = "src/Foo/Bar.hs" it "works" do mkModulePieces exPath `shouldBe` ["Foo", "Bar"] describe "pathToModule" do let exPath = "./src/Foo/Bar.hs" (dir, file) = splitFileName exPath it "splits how i expect" $ do dir `shouldBe` "./src/Foo/" file `shouldBe` "Bar.hs" it "works" do pathToModule exPath `shouldBe` Just Module { moduleName = "Foo.Bar" , modulePath = exPath }