Skip to content

Instantly share code, notes, and snippets.

@felipero
Created November 20, 2009 20:30
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 felipero/239752 to your computer and use it in GitHub Desktop.
Save felipero/239752 to your computer and use it in GitHub Desktop.
package com.novell.aca.snippet
import org.junit.runner.RunWith
import org.specs._
import org.specs.mock.EasyMock
import runner.{JUnitSuiteRunner, JUnit4}
@RunWith(classOf[JUnitSuiteRunner])
class ProfilePageTest extends JUnit4(ProfilePageSpecs)
object ProfilePageSpecs extends Specification with EasyMock {
"Profile page" should {
"perform the upload callback perfectly" in { "b" must_== "b" }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment