Remove double_dsl_spec

This commit is contained in:
Michael Miller 2022-03-19 14:27:00 -06:00
parent 70787ce2d4
commit 5d21e4bb71
No known key found for this signature in database
GPG Key ID: 32B47AE8F388A1FF
1 changed files with 0 additions and 15 deletions

View File

@ -1,15 +0,0 @@
require "../../spec_helper"
Spectator.describe "Double DSL" do
double(:foo, foo: 42, bar: "baz") do
end
let(dbl) { double(:foo) }
specify do
expect(dbl.foo).to eq(42)
expect(dbl.bar).to eq("baz")
expect(dbl.foo).to compile_as(Int32)
expect(dbl.bar).to compile_as(String)
end
end