Skip to content

Instantly share code, notes, and snippets.

@kousen
Created November 20, 2019 19:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kousen/099e3ecc00e0ceb4697e035efa23d93e to your computer and use it in GitHub Desktop.
Save kousen/099e3ecc00e0ceb4697e035efa23d93e to your computer and use it in GitHub Desktop.
Validate the astronaut response
assert sql.rows('select * from ASTRONAUTS').size() == 6
 
sql.eachRow('select * from ASTRONAUTS') { row ->
println "${row.name.padRight(20)} aboard ${row.craft}"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment