eclipse - run a single integration test from a test class -
i have tried run command given in documentation:
-dgrails.env=development test-app -integration myclass.\"create new test thingy search page\"
however, results in integration test running class, instead of running named test. have tried rename test no spaces, toi same result.
it same behavior in eclipse or command line (windows).
has else experienced issue, and, if so, did find workaround?
this facility not available yet. workaround, can use ignorerest annotation (indicates feature methods except ones carrying annotation should ignored), like
@ignorerest def "should test something"() { ... }
Comments
Post a Comment