diff options
author | Jasper Van der Jeugt <jaspervdj@gmail.com> | 2010-12-23 14:32:43 +0100 |
---|---|---|
committer | Jasper Van der Jeugt <jaspervdj@gmail.com> | 2010-12-23 14:32:43 +0100 |
commit | eabc26812d5deb6ef818c20b2ed4c4d07e14feaa (patch) | |
tree | 238503a400e26500eb9d7f7d5bef64db7902a7ba /tests/Regex.hs | |
parent | ad6712121ffc3e41f6bd2a9833267252315b6f65 (diff) | |
download | hakyll-eabc26812d5deb6ef818c20b2ed4c4d07e14feaa.tar.gz |
Remove old tests for now
Diffstat (limited to 'tests/Regex.hs')
-rw-r--r-- | tests/Regex.hs | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/tests/Regex.hs b/tests/Regex.hs deleted file mode 100644 index 5aac932..0000000 --- a/tests/Regex.hs +++ /dev/null @@ -1,24 +0,0 @@ -module Regex - ( regexGroup - ) where - -import qualified Data.Map as M - -import Data.Binary -import Test.Framework (testGroup) -import Test.Framework.Providers.HUnit -import Test.Framework.Providers.QuickCheck2 -import Test.HUnit -import Test.QuickCheck - -import Text.Hakyll.Regex - --- Regex test group. -regexGroup = testGroup "Regex" - [ testCase "test_splitRegex_1" test_splitRegex_1 - , testCase "test_splitRegex_2" test_splitRegex_2 - ] - --- Split Regex test cases. -test_splitRegex_1 = splitRegex "," "1,2,3" @?= ["1", "2", "3"] -test_splitRegex_2 = splitRegex "," ",1,2," @?= ["1", "2"] |