mirror of
https://github.com/indentlabs/notebook.git
synced 2025-10-26 11:19:22 +00:00
10 lines
184 B
Ruby
10 lines
184 B
Ruby
require 'test_helper'
|
|
|
|
class ReferralsControllerTest < ActionDispatch::IntegrationTest
|
|
test "should get index" do
|
|
get referrals_index_url
|
|
assert_response :success
|
|
end
|
|
|
|
end
|