Sha256: f5448de6e0752bc9c17378ba558fa499aa054157386571d6c09f5af44600d4c7
Contents?: true
Size: 1.41 KB
Versions: 6
Compression:
Stored size: 1.41 KB
Contents
require File.join(File.dirname(__FILE__), 'support', 'spec_helper') require 'albacore/support/yamlconfig' class YamlTest include YAMLConfig attr_accessor :some_name end describe YAMLConfig, "when configuring with yaml" do before :all do @yml = YamlTest.new @yml.configure File.join(File.dirname(__FILE__), 'support', 'test.yml') end it "should set the value of some_name" do @yml.some_name.should == "some value" end it "should create and set the value of another_name" do @yml.another_name.should == "another value" end it "should allow hash tables" do @yml.a_hash.length.should == 2 @yml.a_hash['name'].should == "value" @yml.a_hash['foo'].should == "bar" end it "should allow symbols" do @yml.what_ever.should == :a_symbol end end describe YAMLConfig, "when specifying a yaml config folder and configuring" do class YAML_AutoConfig_Test include YAMLConfig end before :all do Albacore::yaml_config_folder = File.join(File.dirname(__FILE__), 'support', 'yamlconfig') @yamltest = YAML_AutoConfig_Test.new @yamltest.load_config_by_task_name("yaml_autoconfig_test") end it "should automatically configure the class from the yaml file in the specified folder" do @yamltest.some_attribute.should == "this value was loaded from a folder, specified by Albacore::yaml_config_folder" end end
Version data entries
6 entries across 6 versions & 1 rubygems