Skip to content

Instantly share code, notes, and snippets.

View EdZilla's full-sized avatar

Ed Young EdZilla

  • SummitBid Technologies
  • Denver, Colorado
View GitHub Profile
package com.comcast.neto.chimps.func
import geb.Browser;
import spock.lang.Ignore
import spock.lang.Stepwise
import org.openqa.selenium.Keys
import com.comcast.neto.chimps.func.BaseGebSpec
import com.comcast.neto.chimps.func.pages.*
import com.comcast.neto.chimps.func.modules.*;
@EdZilla
EdZilla / Exercise.groovy
Created January 16, 2012 15:51
Simple Grails Domain Class
package com.summitbid.coach
class Exercise extends Activity {
@Override
String toString()
{
return "Exercise: ${name}, ${description}"
}