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

11 lines
197 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
end