This commit is contained in:
2015-09-12 15:37:05 -05:00
commit cb7e47a466
77 changed files with 1374 additions and 0 deletions

0
test/controllers/.keep Normal file
View File

View File

@ -0,0 +1,7 @@
require 'test_helper'
class ChildrenControllerTest < ActionController::TestCase
# test "the truth" do
# assert true
# end
end

View File

@ -0,0 +1,7 @@
require 'test_helper'
class DocsControllerTest < ActionController::TestCase
def test_root
xhr :get, :index
assert response.ok?
end
end

View File

@ -0,0 +1,7 @@
require 'test_helper'
class PagesControllerTest < ActionController::TestCase
# test "the truth" do
# assert true
# end
end

View File

@ -0,0 +1,8 @@
require 'test_helper'
class ParentsControllerTest < ActionController::TestCase
def test_parents
xhr :get, :index
assert response.ok?
end
end

View File

@ -0,0 +1,7 @@
require 'test_helper'
class StaffControllerTest < ActionController::TestCase
# test "the truth" do
# assert true
# end
end

View File

@ -0,0 +1,7 @@
require 'test_helper'
class UsersControllerTest < ActionController::TestCase
# test "the truth" do
# assert true
# end
end