packages feed

syntaxnet-haskell-0.1.1.0: test/Spec.hs

{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE QuasiQuotes       #-}

module Main (main) where

import           Test.Hspec

--------------------------------------------------------------------------------

main :: IO ()
main =
  hspec spec

spec :: Spec
spec =
  describe "Testing CoNLL parsing" $ do
    it "" $ do

    -- Do Golden testing against  
    it "" $ do
      input  <- liftIO $ readFile "examples/test-simple.conll"
      output <- liftIO $ readFile "examples/test-simple.conll.dump"