This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
commit 8bea5c79b53d6b29a2ee513f08b41118a44997df
tree 10b72913a53acaeb9bd167ad78dc61b210366936
parent 55d1e23d63d5e54f84f09142fc37a166cad67684
tree 10b72913a53acaeb9bd167ad78dc61b210366936
parent 55d1e23d63d5e54f84f09142fc37a166cad67684
| name | age | message | |
|---|---|---|---|
| |
.classpath | ||
| |
.project | Mon Mar 31 16:36:00 -0700 2008 | |
| |
EasybtestGrailsPlugin.groovy | ||
| |
README | ||
| |
application.properties | Mon Mar 31 16:36:00 -0700 2008 | |
| |
build.xml | Mon Mar 31 16:36:00 -0700 2008 | |
| |
easybtest.launch | Mon Mar 31 16:36:00 -0700 2008 | |
| |
easybtest.tmproj | Mon Mar 31 16:36:00 -0700 2008 | |
| |
grails-easybtest-latest.zip | ||
| |
lib/ | Fri Apr 04 10:25:51 -0700 2008 | |
| |
plugin.xml | ||
| |
scripts/ | ||
| |
test/ | ||
| |
web-app/ | Mon Mar 31 16:36:00 -0700 2008 |
README
This plugin enables the use of Behavior Driven Development to test your Grails Application,
The library behind this is easyb, easyb is a BDD library written in groovy.
For example, you can test your app like this:
given "an invalid zip code", {
invalidzipcode = "221o1"
}
and "given the zipcodevalidator is initialized", {
zipvalidate = new ZipCodeValidator()
}
when "validate is invoked with the invalid zip code", {
value = zipvalidate.validate(invalidzipcode)
}
then "the validator instance should return false", {
value.shouldBe false
}
You can find more information about this plugin and latest released in the following URL:
http://www.urubatan.info/tag/easyb-test/








