mirror of
https://github.com/github/semantic.git
synced 2024-12-26 00:12:29 +03:00
Stub in a spec.
This commit is contained in:
parent
e962b27a3c
commit
7b6bf4f42b
@ -1 +1,7 @@
|
|||||||
module Command.Spec where
|
module Command.Spec where
|
||||||
|
|
||||||
|
import Prologue hiding (readFile)
|
||||||
|
import Test.Hspec
|
||||||
|
|
||||||
|
spec :: Spec
|
||||||
|
spec = return ()
|
||||||
|
@ -2,6 +2,7 @@ module Main where
|
|||||||
|
|
||||||
import Prologue
|
import Prologue
|
||||||
import qualified AlignmentSpec
|
import qualified AlignmentSpec
|
||||||
|
import qualified Command.Spec
|
||||||
import qualified Command.Diff.Spec
|
import qualified Command.Diff.Spec
|
||||||
import qualified Command.Parse.Spec
|
import qualified Command.Parse.Spec
|
||||||
import qualified Data.Mergeable.Spec
|
import qualified Data.Mergeable.Spec
|
||||||
@ -23,6 +24,7 @@ main :: IO ()
|
|||||||
main = do
|
main = do
|
||||||
hspec . parallel $ do
|
hspec . parallel $ do
|
||||||
describe "Alignment" AlignmentSpec.spec
|
describe "Alignment" AlignmentSpec.spec
|
||||||
|
describe "Command" Command.Spec.spec
|
||||||
describe "Command.Diff" Command.Diff.Spec.spec
|
describe "Command.Diff" Command.Diff.Spec.spec
|
||||||
describe "Command.Parse" Command.Parse.Spec.spec
|
describe "Command.Parse" Command.Parse.Spec.spec
|
||||||
describe "Data.Mergeable" Data.Mergeable.Spec.spec
|
describe "Data.Mergeable" Data.Mergeable.Spec.spec
|
||||||
|
Loading…
Reference in New Issue
Block a user