diff options
author | David Waern <david.waern@gmail.com> | 2010-12-06 14:25:37 +0000 |
---|---|---|
committer | David Waern <david.waern@gmail.com> | 2010-12-06 14:25:37 +0000 |
commit | b89b21a6d75c5498d4ebc19e8d099c1b91c44182 (patch) | |
tree | 127987ec9edbf0ca516d82912b93de45e7d1461e /tests/golden-tests/copy.hs | |
parent | 650058aceba7a07192cf4e1792e2b24f636dcc31 (diff) |
Rename golden-tests into html-tests. "golden tests" sounds strange
Diffstat (limited to 'tests/golden-tests/copy.hs')
-rw-r--r-- | tests/golden-tests/copy.hs | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/tests/golden-tests/copy.hs b/tests/golden-tests/copy.hs deleted file mode 100644 index fa18fe9c..00000000 --- a/tests/golden-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=\"\">" |