Move current element actions to their own controllers

This commit is contained in:
Anton Khorev 2024-03-15 03:24:45 +03:00
parent 3b143dc2b4
commit 54dec27949
16 changed files with 224 additions and 171 deletions

View file

@ -0,0 +1,31 @@
require "test_helper"
class WaysControllerTest < ActionDispatch::IntegrationTest
##
# test all routes which lead to this controller
def test_routes
assert_routing(
{ :path => "/way/1", :method => :get },
{ :controller => "ways", :action => "show", :id => "1" }
)
end
def test_show
way = create(:way)
sidebar_browse_check :way_path, way.id, "browse/feature"
assert_select "h4", /^Version/ do
assert_select "a[href='#{old_way_path way, 1}']", :text => "1", :count => 1
end
assert_select ".secondary-actions a[href='#{api_way_path way}']", :count => 1
assert_select ".secondary-actions a[href='#{way_history_path way}']", :count => 1
assert_select ".secondary-actions a[href='#{old_way_path way, 1}']", :count => 0
end
def test_show_multiple_versions
way = create(:way, :with_history, :version => 2)
sidebar_browse_check :way_path, way.id, "browse/feature"
assert_select ".secondary-actions a[href='#{way_history_path way}']", :count => 1
assert_select ".secondary-actions a[href='#{old_way_path way, 1}']", :count => 1
assert_select ".secondary-actions a[href='#{old_way_path way, 2}']", :count => 1
end
end