Files
fizzy/test/controllers/public/collections/columns_controller_test.rb
T
2025-09-28 22:02:01 +02:00

14 lines
348 B
Ruby

require "test_helper"
class Public::Collections::ColumnsControllerTest < ActionDispatch::IntegrationTest
setup do
collections(:writebook).publish
end
test "show" do
column = columns(:writebook_in_progress)
get public_collection_column_path(collections(:writebook).publication.key, column)
assert_response :success
end
end