mirror of
https://github.com/github/semantic.git
synced 2024-12-25 07:55:12 +03:00
Stub in a module for tests of Ruby syntax assignment.
This commit is contained in:
parent
b2d5e7eac1
commit
83d0248500
@ -162,6 +162,7 @@ test-suite test
|
||||
, SummarySpec
|
||||
, GitmonClientSpec
|
||||
, InterpreterSpec
|
||||
, Language.Ruby.Syntax.Spec
|
||||
, PatchOutputSpec
|
||||
, RangeSpec
|
||||
, SES.Myers.Spec
|
||||
|
7
test/Language/Ruby/Syntax/Spec.hs
Normal file
7
test/Language/Ruby/Syntax/Spec.hs
Normal file
@ -0,0 +1,7 @@
|
||||
module Language.Ruby.Syntax.Spec where
|
||||
|
||||
import Prologue
|
||||
import Test.Hspec
|
||||
|
||||
spec :: Spec
|
||||
spec = pure ()
|
@ -8,6 +8,7 @@ import qualified DiffSpec
|
||||
import qualified SummarySpec
|
||||
import qualified GitmonClientSpec
|
||||
import qualified InterpreterSpec
|
||||
import qualified Language.Ruby.Syntax.Spec
|
||||
import qualified PatchOutputSpec
|
||||
import qualified RangeSpec
|
||||
import qualified SES.Myers.Spec
|
||||
@ -28,6 +29,7 @@ main = do
|
||||
describe "Diff" DiffSpec.spec
|
||||
describe "Summary" SummarySpec.spec
|
||||
describe "Interpreter" InterpreterSpec.spec
|
||||
describe "Language.Ruby.Syntax" Language.Ruby.Syntax.Spec.spec
|
||||
describe "PatchOutput" PatchOutputSpec.spec
|
||||
describe "Range" RangeSpec.spec
|
||||
describe "SES.Myers" SES.Myers.Spec.spec
|
||||
|
Loading…
Reference in New Issue
Block a user