drop test-failed test until reintroduced

This commit is contained in:
Mark Harrah 2011-07-15 15:48:37 -04:00
parent 1fddcd5bb2
commit 1c53457adf
5 changed files with 0 additions and 37 deletions

View File

@ -1,10 +0,0 @@
import org.specs._
class helloWorldFailure extends Specification {
"'hello world' has 11 characters" in {
"hello world".size must be equalTo(12)
}
"'hello world' matches 'h.* w.*'" in {
"hello world" must be matching("h.* w.*")
}
}

View File

@ -1,10 +0,0 @@
import org.specs._
class helloWorldSuccess extends Specification {
"'hello world' has 11 characters" in {
"hello world".size must be equalTo(11)
}
"'hello world' matches 'h.* w.*'" in {
"hello world" must be matching("h.* w.*")
}
}

View File

@ -1,2 +0,0 @@
project.version=1.0
project.name=Test Failed

View File

@ -1,6 +0,0 @@
import sbt._
class TestQuickProject(info: ProjectInfo) extends DefaultProject(info) {
val snapshots = ScalaToolsSnapshots
val specs = "org.scala-tools.testing" %% "specs" % "1.6.1"
}

View File

@ -1,9 +0,0 @@
$ copy-file changes/Fail.scala src/test/scala/TestQuick.scala
-> test-failed
-> test-failed *
-> test-failed helloWorldFailure
$ copy-file changes/Success.scala src/test/scala/TestQuick.scala
> test-failed
> test-failed *
> test-failed helloWorldSuccess