1
0

Test pass: test_create_binding_target_when_binding_goal_does_not_exist

This commit is contained in:
cryptogopher 2021-03-17 01:10:51 +01:00
parent b53dc71d6d
commit a92df8b9aa

View File

@ -95,13 +95,12 @@ class TargetsTest < BodyTrackingSystemTestCase
assert_equal 0, @project1.goals.count(&:is_binding?)
assert_difference ['Goal.count', '@project1.goals.reload.count(&:is_binding?)',
'@project1.targets.reload.count'], 1 do
visit project_targets_path(@project1)
visit goal_targets_path(@project1.goals.binding)
click_link t('targets.contextual.link_new_target')
within 'form#new-target-form' do
# Assume binding Goal is selected by default
within 'p.target' do
select quantities(:quantities_energy).name
select '=='
select quantities(:quantities_target_equal).name
fill_in with: '1750'
select units(:units_kcal).shortname
end