Run smoke test for nightly

This commit is contained in:
Michael Miller 2022-05-25 17:20:57 -06:00
parent ce7feb8f0f
commit 670dd7f062
No known key found for this signature in database
GPG key ID: 32B47AE8F388A1FF
9 changed files with 9 additions and 9 deletions

View file

@ -1,6 +1,6 @@
require "../../../spec_helper"
Spectator.describe "Double DSL" do
Spectator.describe "Double DSL", :smoke do
context "specifying methods as keyword args" do
double(:test, foo: "foobar", bar: 42)
subject(dbl) { double(:test) }

View file

@ -1,6 +1,6 @@
require "../../../spec_helper"
Spectator.describe "Stub DSL" do
Spectator.describe "Stub DSL", :smoke do
double(:foobar, foo: 42, bar: "baz") do
stub abstract def other : String
stub abstract def null : Nil