mirror of
https://github.com/github/semantic.git
synced 2024-11-24 08:54:07 +03:00
23 lines
607 B
Haskell
23 lines
607 B
Haskell
|
module InterpreterSpec where
|
||
|
|
||
|
import qualified Interpreter as I
|
||
|
import Range
|
||
|
import Syntax
|
||
|
import Control.Comonad.Cofree
|
||
|
import Control.Monad.Free
|
||
|
import Patch
|
||
|
import Diff
|
||
|
import Categorizable
|
||
|
import Test.Hspec
|
||
|
|
||
|
spec :: Spec
|
||
|
spec = do
|
||
|
describe "interpret" $ do
|
||
|
it "returns a replacement when comparing two unicode equivalent terms" $
|
||
|
I.interpret comparable (Info range mempty :< Leaf "t\776") (Info range2 mempty :< Leaf "\7831") `shouldBe`
|
||
|
Pure (Replace (Info range mempty :< Leaf "t\776") (Info range2 mempty :< Leaf "\7831"))
|
||
|
|
||
|
where
|
||
|
range = Range 0 2
|
||
|
range2 = Range 0 1
|