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

Stub in a test test of adjoinLines.

This commit is contained in:
Rob Rix 2015-12-03 11:44:42 -05:00
parent 0c34de972b
commit aa1db29cc7

View File

@ -1,6 +1,10 @@
module Main where
import Split
import Test.Hspec
main :: IO ()
main = putStrLn "Test suite not yet implemented"
main = hspec $ do
describe "split" $ do
it "two single line elements should concatenate into a single line" $
adjoinLines ([], []) ([], []) `shouldBe` ([], [])