forked from External/greenlight
15 lines
253 B
Ruby
15 lines
253 B
Ruby
require 'test_helper'
|
|
|
|
class BbbControllerTest < ActionDispatch::IntegrationTest
|
|
test "should get join" do
|
|
get bbb_join_url
|
|
assert_response :success
|
|
end
|
|
|
|
test "should get end" do
|
|
get bbb_end_url
|
|
assert_response :success
|
|
end
|
|
|
|
end
|