summaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authorRocky Madden <git@rockymadden.com>2013-02-09 12:01:51 -0700
committerRocky Madden <git@rockymadden.com>2013-02-09 12:01:51 -0700
commitcc777abe17dc2cbda7584dc6d80e8d31416de5fd (patch)
treea2cb776d8c2e1d065ded06d1b80956aed5be8424 /core
parent37c3a86fd856aaa1c843bcb0650dfc77ff1484de (diff)
downloadstringmetric-cc777abe17dc2cbda7584dc6d80e8d31416de5fd.tar.gz
stringmetric-cc777abe17dc2cbda7584dc6d80e8d31416de5fd.tar.bz2
stringmetric-cc777abe17dc2cbda7584dc6d80e8d31416de5fd.zip
Added ParallelTestExecution to all unit tests.
Diffstat (limited to 'core')
-rwxr-xr-xcore/source/test/scala/com/rockymadden/stringmetric/ScalaTest.scala6
1 files changed, 3 insertions, 3 deletions
diff --git a/core/source/test/scala/com/rockymadden/stringmetric/ScalaTest.scala b/core/source/test/scala/com/rockymadden/stringmetric/ScalaTest.scala
index 6e4faba..9e4b4a9 100755
--- a/core/source/test/scala/com/rockymadden/stringmetric/ScalaTest.scala
+++ b/core/source/test/scala/com/rockymadden/stringmetric/ScalaTest.scala
@@ -1,9 +1,9 @@
package com.rockymadden.stringmetric
-import org.scalatest.{ BeforeAndAfter, WordSpec }
+import org.scalatest.{ BeforeAndAfter, ParallelTestExecution, WordSpec }
import org.scalatest.matchers.ShouldMatchers
-trait ScalaTest extends WordSpec with ShouldMatchers with BeforeAndAfter {
+trait ScalaTest extends WordSpec with ShouldMatchers with BeforeAndAfter with ParallelTestExecution {
def allows = afterWord("allow")
def executes = afterWord("execute")
@@ -15,4 +15,4 @@ trait ScalaTest extends WordSpec with ShouldMatchers with BeforeAndAfter {
def returns = afterWord("return")
def throws = afterWord("throw")
-} \ No newline at end of file
+}