set up rails
This commit is contained in:
parent
3854b1edfe
commit
1e2aecc21c
138 changed files with 9829 additions and 53 deletions
0
test/controllers/.keep
Normal file
0
test/controllers/.keep
Normal file
7
test/controllers/home_controller_test.rb
Normal file
7
test/controllers/home_controller_test.rb
Normal file
|
@ -0,0 +1,7 @@
|
|||
require "test_helper"
|
||||
|
||||
class HomeControllerTest < ActionDispatch::IntegrationTest
|
||||
# test "the truth" do
|
||||
# assert true
|
||||
# end
|
||||
end
|
8
test/controllers/login_controller_test.rb
Normal file
8
test/controllers/login_controller_test.rb
Normal file
|
@ -0,0 +1,8 @@
|
|||
require "test_helper"
|
||||
|
||||
class LoginControllerTest < ActionDispatch::IntegrationTest
|
||||
test "should get index" do
|
||||
get login_index_url
|
||||
assert_response :success
|
||||
end
|
||||
end
|
8
test/controllers/wp_admin_controller_test.rb
Normal file
8
test/controllers/wp_admin_controller_test.rb
Normal file
|
@ -0,0 +1,8 @@
|
|||
require "test_helper"
|
||||
|
||||
class WpAdminControllerTest < ActionDispatch::IntegrationTest
|
||||
test "should get index" do
|
||||
get wp_admin_index_url
|
||||
assert_response :success
|
||||
end
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue