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

13 lines
313 B
Ruby

require "test_helper"
class Public::Collections::Columns::NotNowsControllerTest < ActionDispatch::IntegrationTest
setup do
collections(:writebook).publish
end
test "show" do
get public_collection_columns_not_now_path(collections(:writebook).publication.key)
assert_response :success
end
end