From 1717067c17e353c9a24ad16b37c8de3eba0c6c89 Mon Sep 17 00:00:00 2001 From: Evan Czaplicki Date: Fri, 2 May 2014 12:28:34 -0700 Subject: [PATCH] Migrate lib test runner to libraries/ --- .gitignore | 4 +--- Elm.cabal | 8 ++++---- tests/{compiler/LibTest.hs => libraries/LibraryTest.hs} | 0 3 files changed, 5 insertions(+), 7 deletions(-) rename tests/{compiler/LibTest.hs => libraries/LibraryTest.hs} (100%) diff --git a/.gitignore b/.gitignore index 24e3f179b..8e0e4433d 100644 --- a/.gitignore +++ b/.gitignore @@ -13,7 +13,5 @@ data build cache *~ -tests/elm/build/ -tests/elm/cache/ -tests/elm/exe.js +exe.js node_modules/ diff --git a/Elm.cabal b/Elm.cabal index 04ea705a6..1486c4134 100644 --- a/Elm.cabal +++ b/Elm.cabal @@ -243,7 +243,7 @@ Executable elm-doc Test-Suite compiler-tests Type: exitcode-stdio-1.0 - Hs-Source-Dirs: tests/hs, compiler + Hs-Source-Dirs: tests/compiler, compiler Main-is: CompilerTest.hs other-modules: Tests.Compiler Tests.Property @@ -281,10 +281,10 @@ Test-Suite compiler-tests union-find, unordered-containers -Test-Suite lib-tests +Test-Suite library-tests Type: exitcode-stdio-1.0 - Hs-Source-Dirs: tests/hs - Main-is: LibTest.hs + Hs-Source-Dirs: tests/libraries + Main-is: LibraryTest.hs build-depends: base, directory, Elm, diff --git a/tests/compiler/LibTest.hs b/tests/libraries/LibraryTest.hs similarity index 100% rename from tests/compiler/LibTest.hs rename to tests/libraries/LibraryTest.hs