69 lines
1.7 KiB
Ruby
69 lines
1.7 KiB
Ruby
require 'rails_helper'
|
|
|
|
describe Budget do
|
|
|
|
describe "description" do
|
|
it "changes depending on the phase" do
|
|
budget = create(:budget)
|
|
|
|
Budget::PHASES.each do |phase|
|
|
budget.phase = phase
|
|
expect(budget.description).to eq(budget.send("description_#{phase}"))
|
|
expect(budget.description).to be_html_safe
|
|
end
|
|
end
|
|
end
|
|
|
|
describe "phase" do
|
|
let(:budget) { create(:budget) }
|
|
|
|
it "is validated" do
|
|
Budget::PHASES.each do |phase|
|
|
budget.phase = phase
|
|
expect(budget).to be_valid
|
|
end
|
|
|
|
budget.phase = 'inexisting'
|
|
expect(budget).to_not be_valid
|
|
end
|
|
|
|
it "produces auxiliary methods" do
|
|
budget.phase = "accepting"
|
|
expect(budget).to be_accepting
|
|
|
|
budget.phase = "reviewing"
|
|
expect(budget).to be_reviewing
|
|
|
|
budget.phase = "selecting"
|
|
expect(budget).to be_selecting
|
|
|
|
budget.phase = "valuating"
|
|
expect(budget).to be_valuating
|
|
|
|
budget.phase = "balloting"
|
|
expect(budget).to be_balloting
|
|
|
|
budget.phase = "reviewing_ballots"
|
|
expect(budget).to be_reviewing_ballots
|
|
|
|
budget.phase = "finished"
|
|
expect(budget).to be_finished
|
|
end
|
|
end
|
|
|
|
describe "heading_price" do
|
|
let(:budget) { create(:budget) }
|
|
let(:group) { create(:budget_group, budget: budget) }
|
|
|
|
it "returns the heading price if the heading provided is part of the budget" do
|
|
heading = create(:budget_heading, price: 100, group: group)
|
|
expect(budget.heading_price(heading)).to eq(100)
|
|
end
|
|
|
|
it "returns -1 if the heading provided is not part of the budget" do
|
|
expect(budget.heading_price(create(:budget_heading))).to eq(-1)
|
|
end
|
|
end
|
|
end
|
|
|