foodsoft/spec/controllers/finance/ordergroups_controller_spec.rb
Philipp Rothmann 817e409a2b fix test
2023-07-14 10:27:20 +02:00

57 lines
1.6 KiB
Ruby

# frozen_string_literal: true
require 'spec_helper'
describe Finance::OrdergroupsController do
include ActionView::Helpers::NumberHelper
render_views
let(:user) { create(:user, :role_finance, :role_orders, :ordergroup) }
let(:fin_trans_type1) { create(:financial_transaction_type) }
let(:fin_trans_type2) { create(:financial_transaction_type) }
let(:fin_trans1) do
create(:financial_transaction,
user: user,
amount: 100,
ordergroup: user.ordergroup,
financial_transaction_type: fin_trans_type1)
end
let(:fin_trans2) do
create(:financial_transaction,
user: user,
amount: 200,
ordergroup: user.ordergroup,
financial_transaction_type: fin_trans_type1)
end
let(:fin_trans3) do
create(:financial_transaction,
user: user,
amount: 42.23,
ordergroup: user.ordergroup,
financial_transaction_type: fin_trans_type2)
end
before { login user }
describe 'GET index' do
before do
fin_trans1
fin_trans2
fin_trans3
end
it 'renders index page' do
get_with_defaults :index
expect(response).to have_http_status(:success)
end
it 'calculates total balance sums correctly' do
get_with_defaults :index
expect(response).to have_http_status(:success)
assert_select "#total_balance#{fin_trans_type1.financial_transaction_class_id}", number_to_currency(300)
assert_select "#total_balance#{fin_trans_type2.financial_transaction_class_id}", number_to_currency(42.23)
assert_select '#total_balance_sum', number_to_currency(342.23)
end
end
end