blob: e0533bcc11512cc9440e08fc591771f8ea8bab85 [file] [log] [blame]
import com.recipes.Recipe
class RecipeTests extends GroovyTestCase {
void testDynamicMethods() {
def r = new Recipe(title:"Chicken Tikka", description:"Yummy Indian Dish")
r.save()
r = Recipe.findByTitle("Chicken Tikka")
assert r != null
}
}