Skip to content

Commit

Permalink
Specs2 と log周り追加
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshiori committed Apr 17, 2012
1 parent 0e60d19 commit de82d30
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/main/g8/project/Build.scala
Expand Up @@ -11,6 +11,14 @@ object ProjectBuild extends Build {
organization := "$organization$",
version := "$version$",
scalaVersion := "$scala_version$"
libraryDependencies ++= Seq(
// test
"org.specs2" %% "specs2" % "1.9" % "test",

//log
"org.clapper" %% "grizzled-slf4j" % "0.6.8",
"ch.qos.logback" % "logback-classic" % "1.0.1"
)
// add other settings here
)
)
Expand Down
11 changes: 11 additions & 0 deletions src/main/g8/src/test/scala/$package$/ExampleAppSpec.scala
@@ -0,0 +1,11 @@
package $package$

import org.specs2.mutable._

object ExampleAppSpec extends Specification {
"sample" should {
"sample" in {
"foo" must_== "foo"
}

}

0 comments on commit de82d30

Please sign in to comment.