aboutsummaryrefslogtreecommitdiff
path: root/tests/copy.hs
diff options
context:
space:
mode:
authorDavid Waern <david.waern@gmail.com>2010-05-11 19:14:31 +0000
committerDavid Waern <david.waern@gmail.com>2010-05-11 19:14:31 +0000
commita7cfb1d83c7e0f97a806e1f2c202416e625b2ce2 (patch)
treea4154de09f38ddee5e17bc16bfac323a41d9b7b5 /tests/copy.hs
parentc7d9f7678de931e580a3fe1bec2fb0e2dead84d3 (diff)
Re-organise the testsuite structure
Diffstat (limited to 'tests/copy.hs')
-rw-r--r--tests/copy.hs30
1 files changed, 0 insertions, 30 deletions
diff --git a/tests/copy.hs b/tests/copy.hs
deleted file mode 100644
index fa18fe9c..00000000
--- a/tests/copy.hs
+++ /dev/null
@@ -1,30 +0,0 @@
-import System.Cmd
-import System.Environment
-import System.FilePath
-import System.Exit
-import System.Directory
-import Data.List
-import Control.Monad
-import Text.Regex
-
-
-main = do
- args <- getArgs
- dir <- getCurrentDirectory
- contents <- getDirectoryContents (dir </> "output")
- if not $ null args
- then
- mapM copy [ "output" </> file | file <- contents, ".html" `isSuffixOf` file, takeBaseName file `elem` args ]
- else
- mapM copy [ "output" </> file | file <- contents, ".html" `isSuffixOf` file ]
-
-
-copy file = do
- let new = "tests" </> takeFileName file <.> ".ref"
- print file
- print new
- contents <- readFile file
- writeFile new (stripLinks contents)
-
-
-stripLinks f = subRegex (mkRegexWithOpts "<A HREF=[^>]*>" False False) f "<A HREF=\"\">"