mirror of
https://github.com/beatriceo/polyglot.git
synced 2025-08-07 17:59:13 +00:00
10 lines
195 B
Ruby
10 lines
195 B
Ruby
require 'test_helper'
|
|
|
|
class VideoSessionsControllerTest < ActionDispatch::IntegrationTest
|
|
test "should get create" do
|
|
get video_sessions_create_url
|
|
assert_response :success
|
|
end
|
|
|
|
end
|