aboutsummaryrefslogtreecommitdiff
path: root/stage2/plugins
diff options
context:
space:
mode:
authorChristopher Vogt <oss.nsp@cvogt.org>2017-04-02 00:13:25 -0400
committerChristopher Vogt <oss.nsp@cvogt.org>2017-04-02 02:43:39 -0400
commitc220ef8d12e77ce6af6fafde3b388fc3e334b380 (patch)
tree47ff329caae3a38abe06e696c79acd198e2b0613 /stage2/plugins
parent8016298a6ae89ed1c8a45bde87411db4a2daf86f (diff)
downloadcbt-c220ef8d12e77ce6af6fafde3b388fc3e334b380.tar.gz
cbt-c220ef8d12e77ce6af6fafde3b388fc3e334b380.tar.bz2
cbt-c220ef8d12e77ce6af6fafde3b388fc3e334b380.zip
scalatest plugin now does not need import anymore
Diffstat (limited to 'stage2/plugins')
-rw-r--r--stage2/plugins/ScalaTest.scala11
1 files changed, 11 insertions, 0 deletions
diff --git a/stage2/plugins/ScalaTest.scala b/stage2/plugins/ScalaTest.scala
new file mode 100644
index 0000000..29a0777
--- /dev/null
+++ b/stage2/plugins/ScalaTest.scala
@@ -0,0 +1,11 @@
+package cbt
+import java.io.File
+trait ScalaTest extends BaseBuild {
+ override def dependencies = super.dependencies :+ libraries.cbt.scalatestRunner
+ override def run: ExitCode = {
+ classLoader.loadClass( "cbt.scalatest.Runner" ).method(
+ "run", classOf[Array[File]], classOf[ClassLoader]
+ ).invoke( null, exportedClasspath.files.toArray, classLoader )
+ ExitCode.Success
+ }
+}