スタブ定数の定義
stub_const
を使用して定数をスタブ化します。定数が既に定義されている場合、スタブ化された値は例の実行期間中に元の値を置き換えます。
トップレベルの定数のスタブ化
次の内容で「stub_const_spec.rb」という名前のファイルがあるとします:
FOO = 7
RSpec.describe "stubbing FOO" do
it "can stub FOO with a different value" do
stub_const("FOO", 5)
expect(FOO).to eq(5)
end
it "restores the stubbed constant when the example completes" do
expect(FOO).to eq(7)
end
end
「rspec stub_const_spec.rb」と実行すると、
すべての例がパスするはずです。
ネストされた定数のスタブ化
次の内容で「stub_const_spec.rb」という名前のファイルがあるとします:
module MyGem
class SomeClass
FOO = 7
end
end
module MyGem
RSpec.describe SomeClass do
it "stubs the nested constant when it is fully qualified" do
stub_const("MyGem::SomeClass::FOO", 5)
expect(SomeClass::FOO).to eq(5)
end
end
end
「rspec stub_const_spec.rb」と実行すると、
すべての例がパスするはずです。
ネストされた定数の転送
次の内容で「stub_const_spec.rb」という名前のファイルがあるとします:
module MyGem
class SomeClass
FOO = 7
end
end
module MyGem
RSpec.describe SomeClass do
let(:fake_class) { Class.new }
it "does not transfer nested constants by default" do
stub_const("MyGem::SomeClass", fake_class)
expect { SomeClass::FOO }.to raise_error(NameError)
end
it "transfers nested constants when using :transfer_nested_constants => true" do
stub_const("MyGem::SomeClass", fake_class, :transfer_nested_constants => true)
expect(SomeClass::FOO).to eq(7)
end
it "can specify a list of nested constants to transfer" do
stub_const("MyGem::SomeClass", fake_class, :transfer_nested_constants => [:FOO])
expect(SomeClass::FOO).to eq(7)
end
end
end
「rspec stub_const_spec.rb」と実行すると、
すべての例がパスするはずです。