Remove unnecessary method

This commit is contained in:
taitus
2024-11-21 10:42:56 +01:00
parent 84bec1241f
commit 08c4ecbed2

View File

@@ -65,7 +65,9 @@ describe "Nested imageable" do
expect(page).not_to have_css "#new_image_link" expect(page).not_to have_css "#new_image_link"
expect(page).to have_css ".file-name", text: "clippy.jpg" expect(page).to have_css ".file-name", text: "clippy.jpg"
expect_image_has_title("clippy.jpg") within ".image-fields" do
expect(find("input[name$='[title]']").value).to eq "clippy.jpg"
end
end end
scenario "Should not update image file title after choosing a file when a title is already defined" do scenario "Should not update image file title after choosing a file when a title is already defined" do
@@ -206,14 +208,6 @@ describe "Nested imageable" do
factory != :budget factory != :budget
end end
def expect_image_has_title(title)
image = find(".image-fields")
within image do
expect(find("input[name$='[title]']").value).to eq title
end
end
def redirected_to_resource_show_or_navigate_to(imageable) def redirected_to_resource_show_or_navigate_to(imageable)
case imageable.class.to_s case imageable.class.to_s
when "Budget" when "Budget"