1
1
mirror of https://github.com/github/semantic.git synced 2024-11-24 08:54:07 +03:00
semantic/test/Semantic/Spec.hs

24 lines
733 B
Haskell
Raw Normal View History

2018-03-13 21:10:50 +03:00
module Semantic.Spec (spec) where
2017-09-27 19:41:41 +03:00
import Data.Diff
2017-09-27 19:29:07 +03:00
import Data.Patch
2018-05-15 01:39:41 +03:00
import Semantic.Parse
import System.Exit
2018-03-13 21:10:50 +03:00
import SpecHelpers
spec :: Spec
spec = parallel $ do
describe "parseBlob" $ do
2018-06-05 01:26:47 +03:00
it "throws if given an unknown language" $ do
runTask (runParse SExpressionTermRenderer [methodsBlob { blobLanguage = Unknown }]) `shouldThrow` (\ code -> case code of
ExitFailure 1 -> True
_ -> False)
2017-05-30 17:33:48 +03:00
it "renders with the specified renderer" $ do
2018-05-15 01:39:41 +03:00
output <- fmap runBuilder . runTask $ runParse SExpressionTermRenderer [methodsBlob]
output `shouldBe` "(Statements\n (Method\n (Empty)\n (Identifier)\n (Statements)))\n"
where
2018-06-05 01:26:47 +03:00
methodsBlob = Blob "def foo\nend\n" "methods.rb" Ruby