Sha256: 70bdb66a66110dcec746012973fe398560105ea72a51403a40b77d1183659496
Contents?: true
Size: 396 Bytes
Versions: 25
Compression:
Stored size: 396 Bytes
Contents
# encoding: utf-8 shared_examples_for 'a method filter parse result' do before do expected_class.stub(new: response) end let(:response) { double('Response') } it { should be(response) } it 'should initialize method filter with correct arguments' do expected_class.should_receive(:new) .with(TestApp::Literal, :string) .and_return(response) subject end end
Version data entries
25 entries across 25 versions & 1 rubygems