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

11 lines
197 B
Ruby

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