Bumped the Scalatest/Specs versions for 2.10.0-RC3

* Modified tests to use mutable Specs API
* Fixed a few minor specs issues.
This commit is contained in:
Josh Suereth 2012-12-04 12:19:14 -05:00 committed by Mark Harrah
parent ae67f6f85d
commit 7f5f936db4
1 changed files with 3 additions and 2 deletions

View File

@ -1,7 +1,8 @@
package sbt
import java.io.File
import org.specs._
import org.specs2._
import mutable.Specification
import IO.{createDirectory, delete, touch, withTemporaryDirectory}
import org.apache.ivy.util.ChecksumHelper
import IfMissing.Fail
@ -78,4 +79,4 @@ object ComponentManagerTest extends Specification
private def randomString = "asdf"
private def withManager[T](f: ComponentManager => T): T =
TestLogger( logger => withTemporaryDirectory { temp => f(new ComponentManager(xsbt.boot.Locks, new xsbt.boot.ComponentProvider(temp, true), None, logger)) } )
}
}