summaryrefslogtreecommitdiff
path: root/cask/actor/test/src/ActorsTest.scala
blob: 2c81e5b9739c2f7b0377a597315a82d61595e43a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package cask.actor
import utest._
object ActorsTest extends TestSuite{
  def tests = Tests{
    test("hello"){
      import Context.Simple.global

      sealed trait Msg

      object logger extends SimpleActor[Msg]{
        def run(msg: Msg) = {

        }
      }
    }
  }
}