9 lines
154 B
Ruby
9 lines
154 B
Ruby
require 'test_helper'
|
|
|
|
class ParentsControllerTest < ActionController::TestCase
|
|
def test_parents
|
|
xhr :get, :index
|
|
assert response.ok?
|
|
end
|
|
end
|