1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150
|
require 'spec_helper'
module RSpec
module Mocks
describe Configuration do
let(:config) { Configuration.new }
let(:mod_1) { Module.new }
let(:mod_2) { Module.new }
def instance_methods_of(mod)
mod_1.instance_methods.map(&:to_sym)
end
it 'adds stub and should_receive to the given modules' do
expect(instance_methods_of(mod_1)).not_to include(:stub, :should_receive)
expect(instance_methods_of(mod_2)).not_to include(:stub, :should_receive)
config.add_stub_and_should_receive_to(mod_1, mod_2)
expect(instance_methods_of(mod_1)).to include(:stub, :should_receive)
expect(instance_methods_of(mod_2)).to include(:stub, :should_receive)
end
shared_examples_for "configuring the syntax" do
def sandboxed
orig_syntax = RSpec::Mocks.configuration.syntax
yield
ensure
configure_syntax(orig_syntax)
end
around(:each) { |ex| sandboxed(&ex) }
let(:dbl) { double }
let(:should_methods) { [:should_receive, :stub, :should_not_receive] }
let(:should_class_methods) { [:any_instance] }
let(:expect_methods) { [:receive, :allow, :expect_any_instance_of, :allow_any_instance_of] }
it 'defaults to enabling both the :should and :expect syntaxes' do
expect(dbl).to respond_to(*should_methods)
expect(self).to respond_to(*expect_methods)
end
context 'when configured to :expect' do
before { configure_syntax :expect }
it 'removes the should methods from every object' do
expect(dbl).not_to respond_to(*should_methods)
end
it 'removes `any_instance` from every class' do
expect(Class.new).not_to respond_to(*should_class_methods)
end
it 'adds the expect methods to the example group context' do
expect(self).to respond_to(*expect_methods)
end
it 'reports that the syntax is :expect' do
expect(configured_syntax).to eq([:expect])
end
it 'is a no-op when configured a second time' do
expect(Syntax.default_should_syntax_host).not_to receive(:method_undefined)
expect(::RSpec::Mocks::ExampleMethods).not_to receive(:method_added)
configure_syntax :expect
end
end
context 'when configured to :should' do
before { configure_syntax :should }
it 'adds the should methods to every object' do
expect(dbl).to respond_to(*should_methods)
end
it 'adds `any_instance` to every class' do
expect(Class.new).to respond_to(*should_class_methods)
end
it 'removes the expect methods from the example group context' do
expect(self).not_to respond_to(*expect_methods)
end
it 'reports that the syntax is :should' do
expect(configured_syntax).to eq([:should])
end
it 'is a no-op when configured a second time' do
Syntax.default_should_syntax_host.should_not_receive(:method_added)
::RSpec::Mocks::ExampleMethods.should_not_receive(:method_undefined)
configure_syntax :should
end
end
context 'when configured to [:should, :expect]' do
before { configure_syntax [:should, :expect] }
it 'adds the should methods to every object' do
expect(dbl).to respond_to(*should_methods)
end
it 'adds `any_instance` to every class' do
expect(Class.new).to respond_to(*should_class_methods)
end
it 'adds the expect methods to the example group context' do
expect(self).to respond_to(*expect_methods)
end
it 'reports that both syntaxes are enabled' do
expect(configured_syntax).to eq([:should, :expect])
end
end
end
describe "configuring rspec-mocks directly" do
it_behaves_like "configuring the syntax" do
def configure_syntax(syntax)
RSpec::Mocks.configuration.syntax = syntax
end
def configured_syntax
RSpec::Mocks.configuration.syntax
end
end
end
describe "configuring using the rspec-core config API" do
it_behaves_like "configuring the syntax" do
def configure_syntax(syntax)
RSpec.configure do |rspec|
rspec.mock_with :rspec do |c|
c.syntax = syntax
end
end
end
def configured_syntax
RSpec.configure do |rspec|
rspec.mock_with :rspec do |c|
return c.syntax
end
end
end
end
end
end
end
end
|