init
This commit is contained in:
0
test/controllers/.keep
Normal file
0
test/controllers/.keep
Normal file
7
test/controllers/children_controller_test.rb
Normal file
7
test/controllers/children_controller_test.rb
Normal file
@ -0,0 +1,7 @@
|
||||
require 'test_helper'
|
||||
|
||||
class ChildrenControllerTest < ActionController::TestCase
|
||||
# test "the truth" do
|
||||
# assert true
|
||||
# end
|
||||
end
|
7
test/controllers/docs_controller_test.rb
Normal file
7
test/controllers/docs_controller_test.rb
Normal file
@ -0,0 +1,7 @@
|
||||
require 'test_helper'
|
||||
class DocsControllerTest < ActionController::TestCase
|
||||
def test_root
|
||||
xhr :get, :index
|
||||
assert response.ok?
|
||||
end
|
||||
end
|
7
test/controllers/pages_controller_test.rb
Normal file
7
test/controllers/pages_controller_test.rb
Normal file
@ -0,0 +1,7 @@
|
||||
require 'test_helper'
|
||||
|
||||
class PagesControllerTest < ActionController::TestCase
|
||||
# test "the truth" do
|
||||
# assert true
|
||||
# end
|
||||
end
|
8
test/controllers/parents_controller_test.rb
Normal file
8
test/controllers/parents_controller_test.rb
Normal file
@ -0,0 +1,8 @@
|
||||
require 'test_helper'
|
||||
|
||||
class ParentsControllerTest < ActionController::TestCase
|
||||
def test_parents
|
||||
xhr :get, :index
|
||||
assert response.ok?
|
||||
end
|
||||
end
|
7
test/controllers/staff_controller_test.rb
Normal file
7
test/controllers/staff_controller_test.rb
Normal file
@ -0,0 +1,7 @@
|
||||
require 'test_helper'
|
||||
|
||||
class StaffControllerTest < ActionController::TestCase
|
||||
# test "the truth" do
|
||||
# assert true
|
||||
# end
|
||||
end
|
7
test/controllers/users_controller_test.rb
Normal file
7
test/controllers/users_controller_test.rb
Normal file
@ -0,0 +1,7 @@
|
||||
require 'test_helper'
|
||||
|
||||
class UsersControllerTest < ActionController::TestCase
|
||||
# test "the truth" do
|
||||
# assert true
|
||||
# end
|
||||
end
|
Reference in New Issue
Block a user