0
0
Fork 0
rubella/spec/unit/rubella/input/base/data_spec.rb

12 lines
198 B
Ruby
Raw Normal View History

2015-05-01 12:43:01 +02:00
require 'spec_helper'
describe Rubella::Input::Base, '.data' do
it "retuns the stored data" do
input = Rubella::Input::Base.new [3, 4, 5]
expect(input.data).to eq([3, 4, 5])
end
2015-05-05 21:42:05 +02:00
end