13 lines
312 B
Ruby
13 lines
312 B
Ruby
require "test_helper"
|
|
|
|
class Public::Collections::Columns::ClosedsControllerTest < ActionDispatch::IntegrationTest
|
|
setup do
|
|
collections(:writebook).publish
|
|
end
|
|
|
|
test "show" do
|
|
get public_collection_columns_closed_path(collections(:writebook).publication.key)
|
|
assert_response :success
|
|
end
|
|
end
|