PageRenderTime 4ms CodeModel.GetById 1ms RepoModel.GetById 0ms app.codeStats 0ms

/samples/scalate-bookstore/src/test/scala/org/fusesource/scalate/sample/SampleTest.scala

http://github.com/scalate/scalate
Scala | 40 lines | 14 code | 6 blank | 20 comment | 0 complexity | 52c0dc854dc1727409887442e49ede5c MD5 | raw file
  1. /**
  2. * Copyright (C) 2009-2011 the original author or authors.
  3. * See the notice.md file distributed with this work for additional
  4. * information regarding copyright ownership.
  5. *
  6. * Licensed under the Apache License, Version 2.0 (the "License");
  7. * you may not use this file except in compliance with the License.
  8. * You may obtain a copy of the License at
  9. *
  10. * http://www.apache.org/licenses/LICENSE-2.0
  11. *
  12. * Unless required by applicable law or agreed to in writing, software
  13. * distributed under the License is distributed on an "AS IS" BASIS,
  14. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15. * See the License for the specific language governing permissions and
  16. * limitations under the License.
  17. */
  18. package org.fusesource.scalate.sample
  19. import org.junit.runner.RunWith
  20. import org.scalatest.junit.JUnitRunner
  21. import org.scalatest.{FunSuite}
  22. import org.fusesource.scalate.test._
  23. /**
  24. * @version $Revision: 1.1 $
  25. */
  26. @RunWith(classOf[JUnitRunner])
  27. class SampleTest extends FunSuite with WebServerMixin with WebDriverMixin {
  28. test("home page") {
  29. webDriver.get(rootUrl)
  30. pageContains("Bookstore")
  31. }
  32. testPageContains("id/item1", "Title1", "Author1", "item1")
  33. testPageContains("id/item2", "Title2", "Author2", "item2")
  34. }