Guest User

Untitled

a guest
May 17th, 2018
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. package hello.model
  2.  
  3. import org.specs._
  4. import org.specs.matcher._
  5. import org.specs.specification._
  6.  
  7. object ProductTestSpecs extends Specification {
  8. "Product" should {
  9. "be available" in {
  10. (new bootstrap.liftweb.Boot).boot
  11. Product.count must notBeNull
  12. }
  13. }
  14. }
Add Comment
Please, Sign In to add comment