specs updated for test-interface 0.2

This commit is contained in:
Mark Harrah 2009-11-27 13:12:58 -05:00
parent 9e6c14f200
commit 097135fb29
2 changed files with 2 additions and 2 deletions

View File

@ -173,7 +173,7 @@ abstract class BasicScalaProject extends ScalaProject with BasicDependencyProjec
def testFrameworks: Seq[TestFramework] =
{
import TestFrameworks.{ScalaCheck, ScalaTest, Specs}
ScalaCheck :: /*SpecsFramework ::*/ ScalaTest :: Nil
ScalaCheck :: Specs :: ScalaTest :: Nil
}
/** The list of listeners for testing. */
def testListeners: Seq[TestReportListener] = TestLogger(log) :: Nil

View File

@ -16,7 +16,7 @@ object TestFrameworks
{
val ScalaCheck = new TestFramework("org.scalacheck.ScalaCheckFramework")
val ScalaTest = new TestFramework("org.scalatest.tools.ScalaTestFramework")
val Specs = new TestFramework("org.specs.FrameworkImpl")
val Specs = new TestFramework("org.specs.runner.SpecsFramework")
}
class TestFramework(val implClassName: String) extends NotNull