Sha256: c937582b6a93f122e2ae900a13acdaa6d4fc3dba53382b3e5133777b5abdf48c

Contents?: true

Size: 933 Bytes

Versions: 9

Compression:

Stored size: 933 Bytes

Contents

require "vagrant-unison2/config"

describe VagrantPlugins::Unison::Config do
  let(:instance) { described_class.new }

  describe "defaults" do
    subject do
      instance.tap do |o|
        o.finalize!
      end
    end

    its("host_folder")     { should be_nil }
    its("guest_folder")    { should be_nil }
    its("ignore")          { should be_nil }
  end

  describe "overriding defaults" do
    # I typically don't meta-program in tests, but this is a very
    # simple boilerplate test, so I cut corners here. It just sets
    # each of these attributes to "foo" in isolation, and reads the value
    # and asserts the proper result comes back out.
    [:host_folder, :guest_folder].each do |attribute|

      it "should not default #{attribute} if overridden" do
        instance.send("#{attribute}=".to_sym, "foo")
        instance.finalize!
        instance.send(attribute).should == "foo"
      end
    end
  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
vagrant-unison2-2.0.0 spec/vagrant-unison/config_spec.rb
vagrant-unison2-1.2.4 spec/vagrant-unison/config_spec.rb
vagrant-unison2-1.2.3 spec/vagrant-unison/config_spec.rb
vagrant-unison2-1.2.2 spec/vagrant-unison/config_spec.rb
vagrant-unison2-1.2.0 spec/vagrant-unison/config_spec.rb
vagrant-unison2-1.1.0 spec/vagrant-unison/config_spec.rb
vagrant-unison2-1.0.3 spec/vagrant-unison/config_spec.rb
vagrant-unison2-1.0.2 spec/vagrant-unison/config_spec.rb
vagrant-unison2-1.0.1 spec/vagrant-unison/config_spec.rb