Sha256: 645264d76f027bad68049daadc59dfdc18f34eb5705ec99218ffe23fd2f6b478

Contents?: true

Size: 630 Bytes

Versions: 1

Compression:

Stored size: 630 Bytes

Contents

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

describe "Config class" do
  before(:all) do

    BigBroda::Config.setup do |config|
      config.pass_phrase = config_options["pass_phrase"]
      config.key_file    = config_options["key_file"]
      config.scope       = config_options["scope"]
      config.email       =  config_options["email"]
    end
  end

  it "has all the keys required" do
    BigBroda::Config.pass_phrase.should_not be_empty
    BigBroda::Config.key_file.should_not be_empty
    BigBroda::Config.scope.should_not be_empty
    BigBroda::Config.email.should_not be_empty
  end

end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
bigbroda-0.1.0.pre spec/functional/config_spec.rb