13 lines
292 B
Ruby
13 lines
292 B
Ruby
require "test_helper"
|
|
|
|
class Public::Boards::Columns::StreamsControllerTest < ActionDispatch::IntegrationTest
|
|
setup do
|
|
boards(:writebook).publish
|
|
end
|
|
|
|
test "show" do
|
|
get public_board_columns_stream_path(boards(:writebook).publication.key)
|
|
assert_response :success
|
|
end
|
|
end
|