mirror of
https://github.com/we-promise/sure.git
synced 2026-04-19 03:54:08 +00:00
Initial commit
This commit is contained in:
0
test/controllers/.keep
Normal file
0
test/controllers/.keep
Normal file
18
test/controllers/accounts_controller_test.rb
Normal file
18
test/controllers/accounts_controller_test.rb
Normal file
@@ -0,0 +1,18 @@
|
||||
require "test_helper"
|
||||
|
||||
class AccountsControllerTest < ActionDispatch::IntegrationTest
|
||||
test "should get index" do
|
||||
get accounts_index_url
|
||||
assert_response :success
|
||||
end
|
||||
|
||||
test "should get new" do
|
||||
get accounts_new_url
|
||||
assert_response :success
|
||||
end
|
||||
|
||||
test "should get show" do
|
||||
get accounts_show_url
|
||||
assert_response :success
|
||||
end
|
||||
end
|
||||
8
test/controllers/pages_controller_test.rb
Normal file
8
test/controllers/pages_controller_test.rb
Normal file
@@ -0,0 +1,8 @@
|
||||
require "test_helper"
|
||||
|
||||
class PagesControllerTest < ActionDispatch::IntegrationTest
|
||||
test "should get index" do
|
||||
get pages_index_url
|
||||
assert_response :success
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user