aboutsummaryrefslogtreecommitdiff
path: root/src/test/scala/firrtlTests/options/OptionsViewSpec.scala
diff options
context:
space:
mode:
authorchick2020-08-14 19:47:53 -0700
committerJack Koenig2020-08-14 19:47:53 -0700
commit6fc742bfaf5ee508a34189400a1a7dbffe3f1cac (patch)
tree2ed103ee80b0fba613c88a66af854ae9952610ce /src/test/scala/firrtlTests/options/OptionsViewSpec.scala
parentb516293f703c4de86397862fee1897aded2ae140 (diff)
All of src/ formatted with scalafmt
Diffstat (limited to 'src/test/scala/firrtlTests/options/OptionsViewSpec.scala')
-rw-r--r--src/test/scala/firrtlTests/options/OptionsViewSpec.scala17
1 files changed, 8 insertions, 9 deletions
diff --git a/src/test/scala/firrtlTests/options/OptionsViewSpec.scala b/src/test/scala/firrtlTests/options/OptionsViewSpec.scala
index 0c868cb2..504dcdf6 100644
--- a/src/test/scala/firrtlTests/options/OptionsViewSpec.scala
+++ b/src/test/scala/firrtlTests/options/OptionsViewSpec.scala
@@ -2,10 +2,9 @@
package firrtlTests.options
-
import firrtl.options.OptionsView
import firrtl.AnnotationSeq
-import firrtl.annotations.{Annotation,NoTargetAnnotation}
+import firrtl.annotations.{Annotation, NoTargetAnnotation}
import org.scalatest.flatspec.AnyFlatSpec
import org.scalatest.matchers.should.Matchers
@@ -22,7 +21,7 @@ class OptionsViewSpec extends AnyFlatSpec with Matchers {
/* An OptionsView that converts an AnnotationSeq to Option[Foo] */
implicit object FooView extends OptionsView[Foo] {
private def append(foo: Foo, anno: Annotation): Foo = anno match {
- case NameAnnotation(n) => foo.copy(name = Some(n))
+ case NameAnnotation(n) => foo.copy(name = Some(n))
case ValueAnnotation(v) => foo.copy(value = Some(v))
case _ => foo
}
@@ -40,20 +39,20 @@ class OptionsViewSpec extends AnyFlatSpec with Matchers {
def view(options: AnnotationSeq): Bar = options.foldLeft(Bar())(append)
}
- behavior of "OptionsView"
+ behavior.of("OptionsView")
it should "convert annotations to one of two types" in {
/* Some default annotations */
val annos = Seq(NameAnnotation("foo"), ValueAnnotation(42))
info("Foo conversion okay")
- FooView.view(annos) should be (Foo(Some("foo"), Some(42)))
+ FooView.view(annos) should be(Foo(Some("foo"), Some(42)))
info("Bar conversion okay")
- BarView.view(annos) should be (Bar("foo"))
+ BarView.view(annos) should be(Bar("foo"))
}
- behavior of "Viewer"
+ behavior.of("Viewer")
it should "implicitly view annotations as the specified type" in {
import firrtl.options.Viewer._
@@ -62,9 +61,9 @@ class OptionsViewSpec extends AnyFlatSpec with Matchers {
val annos = Seq[Annotation]()
info("Foo view okay")
- view[Foo](annos) should be (Foo(None, None))
+ view[Foo](annos) should be(Foo(None, None))
info("Bar view okay")
- view[Bar](annos) should be (Bar())
+ view[Bar](annos) should be(Bar())
}
}