Sha256: 4eb2f0fbc1ca14df1acde9fc6207c3e077fdda3993af91bcf41456b561b9233b
Contents?: true
Size: 451 Bytes
Versions: 1
Compression:
Stored size: 451 Bytes
Contents
require "spec_helper" module PivotTable describe Column do let(:klass) { Column } before { @instance = klass.new } it { should respond_to :header } it { should respond_to :data } it { should respond_to :total } context 'initialize with hash' do subject { klass.new(header: 'header', data: 'data', total: 'total')} its(:header) { should == 'header' } its(:data) { should == 'data' } end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
pivot_table-0.1.3 | spec/pivot_table/column_spec.rb |