mirror of
https://github.com/Homebrew/brew.git
synced 2025-07-15 19:56:59 +08:00
39 lines
818 B
Ruby
39 lines
818 B
Ruby
# typed: false
|
|
# frozen_string_literal: true
|
|
|
|
require "lazy_object"
|
|
|
|
describe LazyObject do
|
|
describe "#initialize" do
|
|
it "does not evaluate the block" do
|
|
expect { |block|
|
|
described_class.new(&block)
|
|
}.not_to yield_control
|
|
end
|
|
end
|
|
|
|
describe "when receiving a message" do
|
|
it "evaluates the block" do
|
|
expect(described_class.new { 42 }.to_s).to eq "42"
|
|
end
|
|
end
|
|
|
|
describe "#!" do
|
|
it "delegates to the underlying object" do
|
|
expect(!(described_class.new { false })).to be true
|
|
end
|
|
end
|
|
|
|
describe "#!=" do
|
|
it "delegates to the underlying object" do
|
|
expect(described_class.new { 42 }).not_to eq 13
|
|
end
|
|
end
|
|
|
|
describe "#==" do
|
|
it "delegates to the underlying object" do
|
|
expect(described_class.new { 42 }).to eq 42
|
|
end
|
|
end
|
|
end
|