bitcoin-atm

bitcoin atm for pyc inc.

git clone https://9o.is/git/bitcoin-atm.git

BaseSpec.scala

(406B)


      1 package inc.pyc.chimera
      2 
      3 import akka.actor._
      4 import akka.testkit._
      5 import org.scalatest._
      6 import matchers._
      7 import MockConfig._
      8 import com.typesafe.config._
      9 
     10 abstract class BaseSpec(config: Config) 
     11 	extends TestKit(ActorSystem("BaseSpec", config)) 
     12 	with ImplicitSender 
     13 	with WordSpecLike 
     14 	with ShouldMatchers 
     15 	with BeforeAndAfterAll {
     16   
     17   override def afterAll = TestKit.shutdownActorSystem(system)
     18 }