Sha256: cccbf71dbc3608cec6324219465b305d99d0eb55122c2edcd25c2f9abc9ffb4a

Contents?: true

Size: 938 Bytes

Versions: 2

Compression:

Stored size: 938 Bytes

Contents

require "spec_helper"

describe A9n do
  subject { described_class }

  let(:env) { "test" }

  before {
    subject.app = double(env: env)
    subject.root = File.expand_path("../../../test_app", __FILE__)
  }

  after {
    subject.instance_variable_set(:@env, nil)
    subject.root = nil
    subject.app = nil
  }

  context "base config file" do
    it {
      expect(subject.default_dwarf).to eq("default dwarf")
      expect(subject.overriden_dwarf).to eq("already overriden dwarf")
    }
  end

  context "undefined env" do
    let(:env) { "tropical" }
    it {
      expect(subject.default_dwarf).to eq("default dwarf")
      expect(subject.overriden_dwarf).to eq("not yet overriden dwarf")
    }
  end

  context "extra config file" do
    it {
      expect(subject.mandrill).to be_kind_of(A9n::Struct)
      expect(subject.mandrill.username).to eq("joe")
      expect(subject.mandrill.api_key).to eq("asdf1234")
    }
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
a9n-0.3.1 spec/integration/a9n_spec.rb
a9n-0.3.0 spec/integration/a9n_spec.rb