1
1
mirror of https://github.com/github/semantic.git synced 2024-11-24 00:42:33 +03:00

s/Semantic/SemanticCmdLine

This commit is contained in:
Timothy Clem 2017-04-19 14:22:24 -07:00
parent 34553f1057
commit 8eb4d436e0
5 changed files with 8 additions and 8 deletions

View File

@ -1,3 +1,3 @@
module Main (main)
where
import Semantic (main)
import SemanticCmdLine (main)

View File

@ -64,7 +64,7 @@ library
, Renderer.Summary
, Renderer.SExpression
, Renderer.TOC
, Semantic
, SemanticCmdLine
, SES
, SES.Myers
, Source
@ -153,7 +153,7 @@ test-suite test
, Data.RandomWalkSimilarity.Spec
, Data.Syntax.Assignment.Spec
, DiffSpec
, SemanticSpec
, SemanticCmdLineSpec
, SummarySpec
, GitmonClientSpec
, InterpreterSpec

View File

@ -1,5 +1,5 @@
{-# LANGUAGE TemplateHaskell #-}
module Semantic (main, runDiff, runParse) where
module SemanticCmdLine (main, runDiff, runParse) where
import Arguments
import Command

View File

@ -1,8 +1,8 @@
module SemanticSpec where
module SemanticCmdLineSpec where
import Prologue
import Arguments
import Semantic
import SemanticCmdLine
import Test.Hspec hiding (shouldBe, shouldNotBe, shouldThrow, errorCall)
import Test.Hspec.Expectations.Pretty
import Test.Hspec.LeanCheck

View File

@ -19,7 +19,7 @@ import qualified SourceSpec
import qualified TermSpec
import qualified TOCSpec
import qualified IntegrationSpec
import qualified SemanticSpec
import qualified SemanticCmdLineSpec
import Test.Hspec
main :: IO ()
@ -40,7 +40,7 @@ main = hspec $ do
describe "SES.Myers" SES.Myers.Spec.spec
describe "Source" SourceSpec.spec
describe "Term" TermSpec.spec
describe "Semantic" SemanticSpec.spec
describe "SemanticCmdLine" SemanticCmdLineSpec.spec
describe "TOC" TOCSpec.spec
describe "Integration" IntegrationSpec.spec