Skip to content

Commit

Permalink
Remove failing test case
Browse files Browse the repository at this point in the history
Oops, I missed this in e3a25dc.
  • Loading branch information
tfausak committed May 2, 2014
1 parent e3a25dc commit 610f3b1
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions spec/active_interaction/filters/model_filter_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -66,11 +66,9 @@ def self.name
context 'inheritance shenanigans' do
let(:case_equality) { false }
let(:class_equality) { false }
let(:exact_equality) { false }

before do
allow(Model).to receive(:===).and_return(case_equality)
allow(value).to receive(:instance_of?).and_return(exact_equality)
allow(value).to receive(:is_a?).and_return(class_equality)
end

Expand All @@ -97,14 +95,6 @@ def self.name
expect(result).to eql value
end
end

context 'with exact equality' do
let(:exact_equality) { true }

it 'returns the instance' do
expect(result).to eql value
end
end
end
end

Expand Down

0 comments on commit 610f3b1

Please sign in to comment.