From 853ea59d4c2fea5f7b67ae3ac61920e1d089a958 Mon Sep 17 00:00:00 2001 From: Yann Herklotz Date: Thu, 10 Jan 2019 15:49:59 +0000 Subject: Rename remaining modules --- test/Property.hs | 4 ++-- test/Test.hs | 2 +- test/Unit.hs | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) (limited to 'test') diff --git a/test/Property.hs b/test/Property.hs index 8fc9020..80c6f68 100644 --- a/test/Property.hs +++ b/test/Property.hs @@ -4,8 +4,8 @@ import qualified Data.Graph.Inductive as G import Data.Graph.Inductive.PatriciaTree (Gr) import Test.Tasty import qualified Test.Tasty.QuickCheck as QC -import Test.VeriFuzz -import qualified Test.VeriFuzz.Graph.RandomAlt as V +import VeriFuzz +import qualified VeriFuzz.Graph.RandomAlt as V newtype TestGraph = TestGraph { getGraph :: Gr Gate () } deriving (Show) diff --git a/test/Test.hs b/test/Test.hs index 08a4799..389fdff 100644 --- a/test/Test.hs +++ b/test/Test.hs @@ -2,8 +2,8 @@ module Main where import Property import Test.Tasty -import Test.VeriFuzz import Unit +import VeriFuzz tests :: TestTree tests = testGroup "Tests" [unitTests, propertyTests] diff --git a/test/Unit.hs b/test/Unit.hs index 13b9027..8bcc702 100644 --- a/test/Unit.hs +++ b/test/Unit.hs @@ -6,7 +6,7 @@ import Data.Text (Text) import qualified Data.Text as T import Test.Tasty import Test.Tasty.HUnit -import Test.VeriFuzz +import VeriFuzz unitTests = testGroup "Unit tests" [ testCase "Transformation of AST" $ -- cgit