Skip to content

Instantly share code, notes, and snippets.

@mkhq
Created November 5, 2010 10:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mkhq/663960 to your computer and use it in GitHub Desktop.
Save mkhq/663960 to your computer and use it in GitHub Desktop.
test.akka
import akka.actor.Actor
import akka.actor.Actor.actorOf
import org.specs._
object ActorMatchSpec extends Specification {
"actor match" should {
"match non-exhaustive" in {
val actor = actorOf(new Actor {
def receive:Receive = {
case "world" =>
}
}).start
actor ! "hello"
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment