Skip to content

Commit

Permalink
Refine default test
Browse files Browse the repository at this point in the history
  • Loading branch information
fayimora committed Aug 15, 2013
1 parent 84e506a commit 7ddd429
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions src/main/g8/src/main/test/scala/HelloWorldSpec.scala
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,9 @@ package $organization$.$name;format="lower,word"$
import org.scalatest.FunSpec

class HelloWorldSpec extends FunSpec {
describe("1 + 1") {
it("should equals 2") {
val res = 1+1
assert(res == 2)
describe("Adding 1 to 1") {
it("should equals 2"){
assert(1+1 == 2)
}
}
}
Expand Down

0 comments on commit 7ddd429

Please sign in to comment.