scaffold accounts

This commit is contained in:
2016-08-27 21:40:21 -05:00
parent 8ff9ca02f8
commit 3d5743b92f
16 changed files with 289 additions and 1 deletions

View File

@ -0,0 +1,58 @@
require 'test_helper'
class AccountsControllerTest < ActionDispatch::IntegrationTest
setup do
@account = accounts(:client1)
end
test "should get index" do
get accounts_url
assert_response :success
end
test "should get new" do
get new_account_url
assert_response :success
end
test "should create account" do
assert_difference('Account.count') do
post accounts_url, params: { account: {
home: @account.home,
password: @account.password,
site: @account.site,
username: 'client-new'
} }
end
assert_redirected_to account_url(Account.last)
end
test "should show account" do
get account_url(@account)
assert_response :success
end
test "should get edit" do
get edit_account_url(@account)
assert_response :success
end
test "should update account" do
patch account_url(@account), params: { account: {
home: @account.home,
password: @account.password,
site: @account.site,
username: @account.username
} }
assert_redirected_to account_url(@account)
end
test "should destroy account" do
assert_difference('Account.count', -1) do
delete account_url(@account)
end
assert_redirected_to accounts_url
end
end