Sha256: 124c6c56fcc8643411f574f5f542f35e02ff91cdb00ad294ff6e3129e6c863fd
Contents?: true
Size: 433 Bytes
Versions: 1
Compression:
Stored size: 433 Bytes
Contents
require File.expand_path(File.dirname(__FILE__) + '/spec_helper') describe "FeatureRich::Config instance" do before do @config = FeatureRich::Config.new end it "should return \"Feature\" as default feature_model" do @config.feature_model.should == "Feature" end it "should pass arguments like standard method" do @config.feature_model "OtherModel" @config.feature_model.should == "OtherModel" end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
feature-rich-0.2.0 | spec/config_spec.rb |