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