Sha256: bc3f793330ba9b35788f756739b0968371f728c45549a2bc6f1dbca367439973

Contents?: true

Size: 490 Bytes

Versions: 1

Compression:

Stored size: 490 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' }
      its(:total) { should == 'total' }
    end

  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
pivot_table-0.1.1 spec/pivot_table/column_spec.rb