Sha256: 242f8e89e070806d5ae20b97dce1ab48f757fd85d6ca02df3f8d64b4608b8745
Contents?: true
Size: 501 Bytes
Versions: 323
Compression:
Stored size: 501 Bytes
Contents
## Running Tests Execute the test specification with: ```bash $ groovy HelloWorldSpec.groovy ``` ## Enabling More Tests Once your code passes all active tests, enable another test by removing the `@Ignore` preceding the next test that interests you. Do this by deleting the `@Ignore` line or comment it out by adding two slashes to the start of the line. ```Groovy //@Ignore def 'outputs "Hello, Alice!" when given the name "Alice"'() { expect: hello.hello('Alice') == 'Hello, Alice!' } ```
Version data entries
323 entries across 323 versions & 1 rubygems