Skip to content

Instantly share code, notes, and snippets.

@nefilim
Created September 11, 2013 01:35
Show Gist options
  • Select an option

  • Save nefilim/6518314 to your computer and use it in GitHub Desktop.

Select an option

Save nefilim/6518314 to your computer and use it in GitHub Desktop.

Revisions

  1. nefilim created this gist Sep 11, 2013.
    20 changes: 20 additions & 0 deletions gistfile1.scala
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,20 @@
    @DoNotDiscover
    class Test1
    extends FeatureSpecLike
    with Logging
    {
    feature("main feature") {
    logger.info("starting main feature")
    scenario("do stuff") {
    logger.info("doing some stuff here yo")

    }
    }

    }

    class SuitesRunner extends Suites(new Test1) with Logging with BeforeAndAfterAll {
    override protected def beforeAll() {
    logger.info("ok doing some before all stuff")
    }
    }