Advertisement
Guest User

Test Failed

a guest
Oct 2nd, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Groovy 0.30 KB | None | 0 0
  1. package mvc
  2.  
  3. import geb.spock.GebSpec
  4. import grails.testing.mixin.integration.Integration
  5.  
  6. @Integration
  7. class CalculatorSpec extends GebSpec {
  8.     void "Basic calculation"() {
  9.         when:
  10.         go url: '/static/GradeCalculator.html'
  11.         then:
  12.         title == "Grade Calculator"
  13.  
  14.  
  15.     }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement