aboutsummaryrefslogtreecommitdiff
path: root/src/test/scala/scala/async/run/noawait/NoAwaitSpec.scala
blob: 65497ef2bada1c0ed9fb2b3a1119c9826f296deb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/*
 * Copyright (C) 2012-2014 Lightbend Inc. <http://www.lightbend.com>
 */

package scala.async
package run
package noawait

import scala.async.internal.AsyncId
import AsyncId._
import org.junit.Test

class NoAwaitSpec {
  @Test
  def `async block without await`(): Unit = {
    def foo = 1
    async {
      foo
      foo
    } mustBe (foo)
  }

  @Test
  def `async block without await 2`(): Unit = {
    async {
      def x = 0
      if (x > 0) 0 else 1
    } mustBe (1)
  }

  @Test
  def `async expr without await`(): Unit = {
    def foo = 1
    async(foo) mustBe (foo)
  }
}