mirror of https://github.com/sbt/sbt.git
drop test-failed test until reintroduced
This commit is contained in:
parent
1fddcd5bb2
commit
1c53457adf
|
|
@ -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.*")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@ -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.*")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@ -1,2 +0,0 @@
|
||||||
project.version=1.0
|
|
||||||
project.name=Test Failed
|
|
||||||
|
|
@ -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"
|
|
||||||
}
|
|
||||||
|
|
@ -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
|
|
||||||
Loading…
Reference in New Issue