mirror of
https://gitea.invidious.io/iv-org/shard-spectator.git
synced 2024-08-15 00:53:35 +00:00
16 lines
431 B
Crystal
16 lines
431 B
Crystal
require "../spec_helper"
|
|
|
|
# https://gitlab.com/arctic-fox/spectator/-/wikis/Null-Objects
|
|
Spectator.describe "Null Objects Docs" do
|
|
double :my_double
|
|
|
|
it "returns itself for undefined methods" do
|
|
dbl = double(:my_double).as_null_object
|
|
expect(dbl.some_undefined_method).to be(dbl)
|
|
end
|
|
|
|
it "can be used to chain methods" do
|
|
dbl = double(:my_double).as_null_object
|
|
expect(dbl.foo.bar.baz).to be(dbl)
|
|
end
|
|
end
|