Sha256: 21038bf11e17bc0118f518e473b859c375743bc7cc678bb2346135d5d34e7146

Contents?: true

Size: 463 Bytes

Versions: 1

Compression:

Stored size: 463 Bytes

Contents

require File.expand_path(File.dirname(__FILE__) + '/../spec_helper')

include Fathom

describe Import do

  before do
    @content = 'some content'
    @options = OptionsHash.new({:content => @content})
    @i = Import.new(@options)
    @values = [1,2,3,4,5]
  end
  
  it "should initialize with a optional content" do
    @i.content.should eql(@content)
  end

  it "should record the initialization options" do
    @i.options.should eql(@options)
  end
  
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
fathom-0.1.0 spec/fathom/import_spec.rb