Sha256: 8296290bf69aa2348bca750a2956855ff6145233712fbe1b698bee73ca2f5f1e
Contents?: true
Size: 1.16 KB
Versions: 70
Compression:
Stored size: 1.16 KB
Contents
require "spec_helper" describe FactoryGirl::StrategyCalculator, "with a FactoryGirl::Strategy object" do let(:strategy) { FactoryGirl::Strategy::Build } it "returns the strategy object" do FactoryGirl::StrategyCalculator.new(strategy).strategy.should == strategy end end describe FactoryGirl::StrategyCalculator, "with a non-FactoryGirl::Strategy object" do before { define_class "MyAwesomeStrategy" } let(:strategy) { MyAwesomeStrategy } it "returns the strategy object" do expect { FactoryGirl::StrategyCalculator.new(strategy).strategy }.to raise_error "unrecognized method MyAwesomeStrategy" end end describe FactoryGirl::StrategyCalculator do it "returns the correct strategy object for :build" do FactoryGirl::StrategyCalculator.new(:build).strategy.should == FactoryGirl::Strategy::Build end it "returns the correct strategy object for :create" do FactoryGirl::StrategyCalculator.new(:create).strategy.should == FactoryGirl::Strategy::Create end it "raises when passing a bogus strategy" do expect { FactoryGirl::StrategyCalculator.new(:bogus_strategy).strategy }.to raise_error "unrecognized method bogus_strategy" end end
Version data entries
70 entries across 66 versions & 5 rubygems