mirror of
https://gitea.invidious.io/iv-org/shard-spectator.git
synced 2024-08-15 00:53:35 +00:00
10 lines
181 B
Crystal
10 lines
181 B
Crystal
|
require "../spec_helper"
|
||
|
|
||
|
Spectator.describe "GitHub Issue #30" do
|
||
|
let(dbl) { double(:foo) }
|
||
|
|
||
|
it "supports block-less symbol doubles" do
|
||
|
expect(dbl).to_not be_nil
|
||
|
end
|
||
|
end
|