Sha256: 9789169dc6691463a286a127666fe120f9f98c7378af75aa4cf2fb4f2841c49d

Contents?: true

Size: 350 Bytes

Versions: 2

Compression:

Stored size: 350 Bytes

Contents

require File.expand_path('../spec_helper', __FILE__)

describe Settings do

  it "has default manifest path" do
    Settings.new.manifest_path.should == File.join( ENV["HOME"], ".inqlude/manifests" )
  end

  it "lets manifest path to be set" do
    s = Settings.new
    s.manifest_path = "abc/xyz"
    s.manifest_path.should == "abc/xyz"
  end

end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
inqlude-0.0.8 spec/settings_spec.rb
inqlude-0.0.7 spec/settings_spec.rb