summaryrefslogtreecommitdiff
path: root/cli/src/test/scala/com/rockymadden/stringmetric/cli/ScalaTest.scala
blob: 4cc0eede35f071df3f15855e37a365c9cb3bc8b3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.rockymadden.stringmetric.cli

import org.scalatest.{BeforeAndAfter, ParallelTestExecution, WordSpec}
import org.scalatest.matchers.ShouldMatchers

trait ScalaTest extends WordSpec with ShouldMatchers with BeforeAndAfter with ParallelTestExecution {
	def allows = afterWord("allow")

	def executes = afterWord("execute")

	def passed = afterWord("passed")

	def provide = afterWord("provide")

	def returns = afterWord("return")

	def throws = afterWord("throw")
}