0
0
Fork 0
rubella/spec/unit/rubella/input/json/each_spec.rb

17 lines
277 B
Ruby
Raw Normal View History

2015-05-01 22:06:55 +02:00
require 'spec_helper'
describe Rubella::Input::JSON, '.each' do
it "passes the data through the given block" do
input = Rubella::Input::JSON.string "[3, 4, 5]"
sum = 0
input.each do |value|
sum = sum + value
end
expect(sum).to eq(12)
end
2015-10-22 12:11:16 +02:00
end