set up rails

This commit is contained in:
jane 2021-11-12 22:20:13 -05:00
parent 3854b1edfe
commit 1e2aecc21c
138 changed files with 9829 additions and 53 deletions

0
test/controllers/.keep Normal file
View file

View file

@ -0,0 +1,7 @@
require "test_helper"
class HomeControllerTest < ActionDispatch::IntegrationTest
# test "the truth" do
# assert true
# end
end

View 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

View 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