1
0
This repository has been archived on 2023-12-07. You can view files and clone it, but cannot push or open issues or pull requests.
body_tracking/test/system/goals_test.rb
cryptogopher bbe82aa715 Add Goals tests
Test pass: test_index
2021-03-07 15:13:41 +01:00

16 lines
406 B
Ruby

require File.expand_path('../../application_system_test_case', __FILE__)
class GoalsTest < BodyTrackingSystemTestCase
def setup
super
@project1 = projects(:projects_001)
log_user 'jsmith', 'jsmith'
end
def test_index
assert_not_equal 0, @project1.goals.count
visit project_goals_path(@project1)
assert_selector 'table#goals tbody tr', count: @project1.goals.count
end
end