call specs2 def with parameter

86 views Asked by At

I have my spec2 test setup as follows

def is =
    sequential ^
      s2"""
      Action
        should return false for param false   $test(false)
                                                                             """

Def of test is as follows

def test(param: Boolean): Boolean

However I get compile time error saying missing argument for method test in my definition for is. How can I get this right?

Thanks!

0

There are 0 answers