spec/unit/substation/request/input_spec.rb in substation-0.0.8 vs spec/unit/substation/request/input_spec.rb in substation-0.0.9

- old
+ new

@@ -4,11 +4,12 @@ describe Request, '#input' do subject { object.input } - let(:object) { described_class.new(env, input) } + let(:object) { described_class.new(name, env, input) } + let(:name) { mock } let(:env) { mock } let(:input) { mock } - it { should equal(input) } + it { should be(input) } end