8 lines
147 B
Ruby
8 lines
147 B
Ruby
require 'test_helper'
|
|
class DocsControllerTest < ActionController::TestCase
|
|
def test_root
|
|
xhr :get, :index
|
|
assert response.ok?
|
|
end
|
|
end
|