Skip to content

Instantly share code, notes, and snippets.

@maxjustus
Last active December 14, 2015 14:49
Show Gist options
  • Save maxjustus/5103558 to your computer and use it in GitHub Desktop.
Save maxjustus/5103558 to your computer and use it in GitHub Desktop.
describe ".inc_num_runs_by_brand" do
let (:upc_master) {FactoryGirl.create(:upc_master_with_sizes)}
it "increments the num runs correctly" do
UpcMaster.inc_num_runs_by_brand(upc_master.sizes.first.brand)
upc_master.reload.num_runs.should == 1
end
end
describe ".inc_num_runs_by_brand" do
let(:upc_master) { FactoryGirl.create(:upc_master_with_sizes) }
it "increments the num runs correctly" do
UpcMaster.inc_num_runs_by_brand(upc_master.sizes.first.brand)
upc_master.reload.num_runs.should == 1
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment