left4me/rails/test/system/actions_test.rb
mwiegand 5ab99c7779
wip
2022-11-27 17:32:21 +01:00

45 lines
1.1 KiB
Ruby

require "application_system_test_case"
class ActionsTest < ApplicationSystemTestCase
setup do
@action = actions(:one)
end
test "visiting the index" do
visit actions_url
assert_selector "h1", text: "Actions"
end
test "should create action" do
visit actions_url
click_on "New action"
fill_in "Actionable", with: @action.actionable_id
fill_in "Actionable type", with: @action.actionable_type
fill_in "Batch", with: @action.batch_id
click_on "Create Action"
assert_text "Action was successfully created"
click_on "Back"
end
test "should update Action" do
visit action_url(@action)
click_on "Edit this action", match: :first
fill_in "Actionable", with: @action.actionable_id
fill_in "Actionable type", with: @action.actionable_type
fill_in "Batch", with: @action.batch_id
click_on "Update Action"
assert_text "Action was successfully updated"
click_on "Back"
end
test "should destroy Action" do
visit action_url(@action)
click_on "Destroy this action", match: :first
assert_text "Action was successfully destroyed"
end
end