Files
nairobi/spec/features/budgets/stats_spec.rb
Javi Martín c00203f7f5 Move budget stats permission tests to the model
They're easier to test and to read in the model.
2019-05-22 11:50:03 +02:00

13 lines
242 B
Ruby

require "rails_helper"
feature "Stats" do
let(:budget) { create(:budget) }
let(:group) { create(:budget_group, budget: budget) }
let(:heading) { create(:budget_heading, group: group, price: 1000) }
describe "Show" do
end
end