Sha256: 8d56ceba8a84d5cbbd1dcda67f36dca39f1adde002c2ff329d947924dfc94b72
Contents?: true
Size: 1.56 KB
Versions: 3
Compression:
Stored size: 1.56 KB
Contents
require 'spec_helper' module Relish describe OptionsFile do let(:path) { Dir.tmpdir + '/.relish' } let(:global_options) { described_class.new(path) } after { FileUtils.rm_rf(path) } describe '#[]' do context 'with options file that exists' do let(:options) do {'publisher' => 'rspec', 'project' => 'rspec-core'} end before do File.open(path, 'w') { |f| YAML.dump(options, f) } end it 'parses the publisher' do global_options['publisher'].should eq('rspec') end it 'parses the project' do global_options['project'].should eq('rspec-core') end end context 'with options file that does not exist' do before do FileUtils.rm_rf(path) end it 'returns an empty hash' do global_options.should eq({}) end end end describe '#store' do context 'with options file that exists' do let(:options) do {'publisher' => 'rspec', 'project' => 'rspec-core'} end before do File.open(path, 'w') { |f| YAML.dump(options, f) } global_options.store('publisher' => 'relish') end it "over-writes existing values" do OptionsFile.new(path).options['publisher'].should == 'relish' end it 'leaves existing options alone' do OptionsFile.new(path).options['project'].should == 'rspec-core' end end end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
relish-0.7.1 | spec/relish/options_file_spec.rb |
relish-0.7 | spec/relish/options_file_spec.rb |
relish-0.6 | spec/relish/options_file_spec.rb |