Skip to content

Commit

Permalink
Add scaffolding for new applyMerge tests
Browse files Browse the repository at this point in the history
  • Loading branch information
pgujjula committed May 28, 2024
1 parent 9a6dd39 commit 71d4852
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 0 deletions.
1 change: 1 addition & 0 deletions apply-merge.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ test-suite apply-merge-tests
Test.ApplyMerge.MergeAll
Test.Data.DoublyLinkedList.STRef
Test.Data.List.ApplyMerge
Test.Data.List.ApplyMerge.New
Test.Data.PQueue.Prio.Min.Mutable
hs-source-dirs:
src
Expand Down
2 changes: 2 additions & 0 deletions test/Main.hs
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import Test.ApplyMerge.IntSet qualified (tests)
import Test.ApplyMerge.MergeAll qualified (tests)
import Test.Data.DoublyLinkedList.STRef qualified (tests)
import Test.Data.List.ApplyMerge qualified (tests)
import Test.Data.List.ApplyMerge.New qualified (tests)
import Test.Data.PQueue.Prio.Min.Mutable qualified (tests)
import Test.Tasty (TestTree, defaultMain, testGroup)

Expand All @@ -24,6 +25,7 @@ tests =
Test.ApplyMerge.IntSet.tests,
Test.ApplyMerge.MergeAll.tests,
Test.Data.List.ApplyMerge.tests,
Test.Data.List.ApplyMerge.New.tests,
Test.Data.DoublyLinkedList.STRef.tests,
Test.Data.PQueue.Prio.Min.Mutable.tests
]
11 changes: 11 additions & 0 deletions test/Test/Data/List/ApplyMerge/New.hs
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
module Test.Data.List.ApplyMerge.New (tests) where

import Test.Tasty (TestTree, testGroup)
import Test.Tasty.HUnit (testCase, (@?=))

tests :: TestTree
tests =
testGroup
"Data.List.ApplyMerge.New"
[ testCase "placeholder" ((1 :: Int) @?= 1)
]

0 comments on commit 71d4852

Please sign in to comment.