spec/wukong/processor_spec.rb in wukong-3.0.1 vs spec/wukong/processor_spec.rb in wukong-4.0.0
- old
+ new
@@ -7,10 +7,9 @@
describe "has an interface" do
it{ should respond_to(:setup) }
it{ should respond_to(:process) }
it{ should respond_to(:finalize) }
it{ should respond_to(:stop) }
- it{ should respond_to(:notify) }
end
describe "default process method" do
it "yields the original input record by default on process" do
expect { |b| subject.process(1, &b) }.to yield_with_args(1)