renamed project to gemcap
It was brought to my attention that there is a rust package named gemserv. I changed the name to avoid any potential confusion.
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
{-
|
||||
|
||||
gemserv
|
||||
gemcap
|
||||
|
||||
Cooyright (C) Jonathan Lamothe <jonathan@jlamothe.net>
|
||||
|
||||
@@ -20,7 +20,7 @@ License along with this program. If not, see
|
||||
|
||||
-}
|
||||
|
||||
module Network.GemServ.InternalSpec (spec) where
|
||||
module Network.Gemini.Capsule.InternalSpec (spec) where
|
||||
|
||||
import Test.Hspec (Spec, describe)
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{-
|
||||
|
||||
gemserv
|
||||
gemcap
|
||||
|
||||
Cooyright (C) Jonathan Lamothe <jonathan@jlamothe.net>
|
||||
|
||||
@@ -20,17 +20,17 @@ License along with this program. If not, see
|
||||
|
||||
-}
|
||||
|
||||
module Network.GemServSpec (spec) where
|
||||
module Network.Gemini.CapsuleSpec (spec) where
|
||||
|
||||
import Test.Hspec (Spec, context, describe, it, shouldBe)
|
||||
|
||||
import qualified Network.GemServ.InternalSpec as Internal
|
||||
import qualified Network.Gemini.Capsule.InternalSpec as Internal
|
||||
|
||||
import Network.GemServ
|
||||
import Network.GemServ.Types
|
||||
import Network.Gemini.Capsule
|
||||
import Network.Gemini.Capsule.Types
|
||||
|
||||
spec :: Spec
|
||||
spec = describe "Network.GemServ" $ do
|
||||
spec = describe "Network.Gemini.Capsule" $ do
|
||||
Internal.spec
|
||||
encodeGemURLSpec
|
||||
decodeGemURLSpec
|
||||
@@ -1,6 +1,6 @@
|
||||
{-
|
||||
|
||||
gemserv
|
||||
gemcap
|
||||
|
||||
Cooyright (C) Jonathan Lamothe <jonathan@jlamothe.net>
|
||||
|
||||
@@ -23,9 +23,9 @@ License along with this program. If not, see
|
||||
module Main (main) where
|
||||
|
||||
import Test.Hspec (hspec)
|
||||
import qualified Network.GemServSpec as GemServ
|
||||
import qualified Network.Gemini.CapsuleSpec as GemCap
|
||||
|
||||
main :: IO ()
|
||||
main = hspec GemServ.spec
|
||||
main = hspec GemCap.spec
|
||||
|
||||
--jl
|
||||
|
||||
Reference in New Issue
Block a user