Wiki

Clone wiki

gexpect / Home

Groovy Expect wiki

Expectation lib inspired by RSpec - excellent BDD framework for Ruby

Quick Start / Example

#!groovy

expect {
    save(new Book("BDD"))
}.to change {
    bookRepository.findAllByTitle("BDD").count()
}.by(1)

More examples in tests

Have fun!

Updated