Merge branch 'master' into new_master

This commit is contained in:
Viktor Klang 2010-09-22 22:48:02 +02:00
commit b53389263a
6 changed files with 7 additions and 6 deletions

View file

@ -25,7 +25,6 @@ import org.apache.hadoop.hbase.util.Bytes
*/
private[akka] object HbaseStorageBackend extends MapStorageBackend[Array[Byte], Array[Byte]] with VectorStorageBackend[Array[Byte]] with RefStorageBackend[Array[Byte]] with Logging {
val EMPTY_BYTE_ARRAY = new Array[Byte](0)
val HBASE_ZOOKEEPER_QUORUM = config.getString("akka.storage.hbase.zookeeper-quorum", "localhost")
val CONFIGURATION = new HBaseConfiguration
val REF_TABLE_NAME = "__REF_TABLE"

View file

@ -76,7 +76,7 @@ class PersistentFailerActor extends Transactor {
}
}
class HbasePersistentActorSpec extends JUnitSuite with BeforeAndAfterAll {
class HbasePersistentActorSpecTest extends JUnitSuite with BeforeAndAfterAll {
val testUtil = new HBaseTestingUtility

View file

@ -5,7 +5,7 @@ import org.scalatest.matchers.ShouldMatchers
import org.scalatest.BeforeAndAfterAll
import org.scalatest.BeforeAndAfterEach
class HbaseStorageSpec extends
class HbaseStorageSpecTest extends
Spec with
ShouldMatchers with
BeforeAndAfterAll with

View file

@ -171,7 +171,7 @@ object Storage {
import Storage._
@RunWith(classOf[JUnitRunner])
class HbaseTicket343Spec extends Spec with ShouldMatchers with BeforeAndAfterAll with BeforeAndAfterEach {
class HbaseTicket343SpecTest extends Spec with ShouldMatchers with BeforeAndAfterAll with BeforeAndAfterEach {
import org.apache.hadoop.hbase.HBaseTestingUtility

View file

@ -10,7 +10,7 @@ import org.junit.Test
import org.apache.hadoop.hbase.HBaseTestingUtility
@RunWith(classOf[JUnitRunner])
class PersistenceSpec extends Spec with BeforeAndAfterAll with ShouldMatchers {
class PersistenceSpecTest extends Spec with BeforeAndAfterAll with ShouldMatchers {
import org.apache.hadoop.hbase.HBaseTestingUtility

View file

@ -95,7 +95,7 @@ class AkkaParentProject(info: ProjectInfo) extends DefaultProject(info) {
lazy val DISPATCH_VERSION = "0.7.4"
lazy val HAWT_DISPATCH_VERSION = "1.0"
lazy val JACKSON_VERSION = "1.2.1"
lazy val JERSEY_VERSION = "1.2"
lazy val JERSEY_VERSION = "1.3"
lazy val MULTIVERSE_VERSION = "0.6.1"
lazy val SCALATEST_VERSION = "1.2-for-scala-2.8.0.final-SNAPSHOT"
lazy val LOGBACK_VERSION = "0.9.24"
@ -543,6 +543,8 @@ class AkkaParentProject(info: ProjectInfo) extends DefaultProject(info) {
val hbase_test = Dependencies.hbase_test
val jetty = Dependencies.jett_mortbay
val log4j = Dependencies.log4j
override def testOptions = TestFilter((name: String) => name.endsWith("Test")) :: Nil
}
// -------------------------------------------------------------------------------------------------------------------