summaryrefslogtreecommitdiff
path: root/src/test/scala/hbt/HbtTests.scala
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/scala/hbt/HbtTests.scala')
-rw-r--r--src/test/scala/hbt/HbtTests.scala17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/test/scala/hbt/HbtTests.scala b/src/test/scala/hbt/HbtTests.scala
deleted file mode 100644
index 0c10be58..00000000
--- a/src/test/scala/hbt/HbtTests.scala
+++ /dev/null
@@ -1,17 +0,0 @@
-package hbt
-
-import hbt.Util.{compileAll, jarUp, list}
-import utest._
-import java.nio.{file => jnio}
-object HbtTests extends TestSuite{
- val tests = Tests{
- 'simple - {
- val sourceRoot = Target.path(jnio.Paths.get("src/test/resources/example/src"))
- val resourceRoot = Target.path(jnio.Paths.get("src/test/resources/example/resources"))
- val allSources = list(sourceRoot)
- val classFiles = compileAll(allSources)
- val jar = jarUp(resourceRoot, classFiles)
- Evaluator.apply(jar, jnio.Paths.get("target/workspace"))
- }
- }
-}