kanbanworkflowstimelinescrumrubyroadmapproject-planningproject-managementopenprojectangularissue-trackerifcgantt-chartganttbug-trackerboardsbcf
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
1.7 KiB
52 lines
1.7 KiB
11 years ago
|
#-- copyright
|
||
|
# OpenProject Costs Plugin
|
||
|
#
|
||
|
# Copyright (C) 2009 - 2014 the OpenProject Foundation (OPF)
|
||
|
#
|
||
|
# This program is free software; you can redistribute it and/or
|
||
|
# modify it under the terms of the GNU General Public License
|
||
|
# version 3.
|
||
|
#
|
||
|
# This program is distributed in the hope that it will be useful,
|
||
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
|
# GNU General Public License for more details.
|
||
|
#
|
||
|
# You should have received a copy of the GNU General Public License
|
||
|
# along with this program; if not, write to the Free Software
|
||
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||
|
#++
|
||
|
|
||
9 years ago
|
require File.expand_path(File.dirname(__FILE__) + '/../spec_helper.rb')
|
||
11 years ago
|
|
||
|
describe HourlyRatesController do
|
||
7 years ago
|
let(:user) { FactoryBot.create(:user) }
|
||
|
let(:admin) { FactoryBot.create(:admin) }
|
||
|
let(:default_rate) { FactoryBot.create(:default_hourly_rate, user: user) }
|
||
11 years ago
|
|
||
9 years ago
|
describe 'PUT update' do
|
||
|
describe 'WHEN trying to update with an invalid rate value' do
|
||
11 years ago
|
let(:params) {
|
||
|
{
|
||
9 years ago
|
id: user.id,
|
||
9 years ago
|
user: { 'existing_rate_attributes' => { "#{default_rate.id}" => { 'valid_from' => "#{default_rate.valid_from}", 'rate' => '2d5' } } }
|
||
11 years ago
|
}
|
||
|
}
|
||
|
before do
|
||
|
as_logged_in_user admin do
|
||
8 years ago
|
post :update, params: params
|
||
11 years ago
|
end
|
||
|
end
|
||
|
|
||
9 years ago
|
it 'should render the edit template' do
|
||
|
expect(response).to render_template('edit')
|
||
11 years ago
|
end
|
||
|
|
||
9 years ago
|
it 'should display an error message' do
|
||
9 years ago
|
actual_message = assigns(:user).default_rates.first.errors.messages[:rate].first
|
||
|
expect(actual_message).to eq(I18n.t('activerecord.errors.messages.not_a_number'))
|
||
11 years ago
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|