Sha256: 316d960e68c2d804c074f5829d7e827434814f061ff217761e6eef1bbbb6cbd1

Contents?: true

Size: 776 Bytes

Versions: 6

Compression:

Stored size: 776 Bytes

Contents

require 'spec_helper'

describe CsvShaper::Shaper do
  it "should return a version" do
    expect(CsvShaper::VERSION).to be_kind_of(String)
  end

  it "should raise an exception when passing a non-enumarble to rows" do
    csv = CsvShaper::Shaper.new
    expect {
      csv.rows :name
    }.to raise_exception(ArgumentError, 'csv.rows only accepts Enumerable object (that respond to #each). Use csv.row for a single object.')
  end

  it "should respond to to_csv" do
    csv = CsvShaper::Shaper.new
    expect(csv).to respond_to(:to_csv)
  end

  it "should provide a shortcut to the encode method" do
    expect(CsvShaper).to respond_to(:encode)

    CsvShaper.encode do |csv|
      csv.headers :foo
      expect(csv).to be_instance_of(CsvShaper::Shaper)
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
csv_shaper-1.3.2 spec/csv_shaper_spec.rb
csv_shaper-1.3.1 spec/csv_shaper_spec.rb
csv_shaper-1.3.0 spec/csv_shaper_spec.rb
csv_shaper-1.2.0 spec/csv_shaper_spec.rb
csv_shaper-1.1.1 spec/csv_shaper_spec.rb
csv_shaper-1.1.0 spec/csv_shaper_spec.rb