Sha256: 18fd25cba53808950fb9d00f27a1bbc61e03aa4dd28e00af6883da2feb2b20e3
Contents?: true
Size: 366 Bytes
Versions: 19
Compression:
Stored size: 366 Bytes
Contents
shared_examples_for 'a method filter parse result' do before do expected_class.stub(:new => response) end let(:response) { mock('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
19 entries across 18 versions & 1 rubygems