account working
This commit is contained in:
141
spec/controllers/settings/accounts_controller_spec.rb
Normal file
141
spec/controllers/settings/accounts_controller_spec.rb
Normal file
@@ -0,0 +1,141 @@
|
||||
require 'rails_helper'
|
||||
|
||||
# This spec was generated by rspec-rails when you ran the scaffold generator.
|
||||
# It demonstrates how one might use RSpec to specify the controller code that
|
||||
# was generated by Rails when you ran the scaffold generator.
|
||||
#
|
||||
# It assumes that the implementation code is generated by the rails scaffold
|
||||
# generator. If you are using any extension libraries to generate different
|
||||
# controller code, this generated spec may or may not pass.
|
||||
#
|
||||
# It only uses APIs available in rails and/or rspec-rails. There are a number
|
||||
# of tools you can use to make these specs even more expressive, but we're
|
||||
# sticking to rails and rspec-rails APIs to keep things simple and stable.
|
||||
#
|
||||
# Compared to earlier versions of this generator, there is very limited use of
|
||||
# stubs and message expectations in this spec. Stubs are only used when there
|
||||
# is no simpler way to get a handle on the object needed for the example.
|
||||
# Message expectations are only used when there is no simpler way to specify
|
||||
# that an instance is receiving a specific message.
|
||||
#
|
||||
# Also compared to earlier versions of this generator, there are no longer any
|
||||
# expectations of assigns and templates rendered. These features have been
|
||||
# removed from Rails core in Rails 5, but can be added back in via the
|
||||
# `rails-controller-testing` gem.
|
||||
|
||||
RSpec.describe Settings::AccountsController, type: :controller do
|
||||
|
||||
# This should return the minimal set of attributes required to create a valid
|
||||
# Settings::Account. As you add validations to Settings::Account, be sure to
|
||||
# adjust the attributes here as well.
|
||||
let(:valid_attributes) {
|
||||
skip("Add a hash of attributes valid for your model")
|
||||
}
|
||||
|
||||
let(:invalid_attributes) {
|
||||
skip("Add a hash of attributes invalid for your model")
|
||||
}
|
||||
|
||||
# This should return the minimal set of values that should be in the session
|
||||
# in order to pass any filters (e.g. authentication) defined in
|
||||
# Settings::AccountsController. Be sure to keep this updated too.
|
||||
let(:valid_session) { {} }
|
||||
|
||||
describe "GET #index" do
|
||||
it "returns a success response" do
|
||||
account = Settings::Account.create! valid_attributes
|
||||
get :index, params: {}, session: valid_session
|
||||
expect(response).to be_success
|
||||
end
|
||||
end
|
||||
|
||||
describe "GET #show" do
|
||||
it "returns a success response" do
|
||||
account = Settings::Account.create! valid_attributes
|
||||
get :show, params: {id: account.to_param}, session: valid_session
|
||||
expect(response).to be_success
|
||||
end
|
||||
end
|
||||
|
||||
describe "GET #new" do
|
||||
it "returns a success response" do
|
||||
get :new, params: {}, session: valid_session
|
||||
expect(response).to be_success
|
||||
end
|
||||
end
|
||||
|
||||
describe "GET #edit" do
|
||||
it "returns a success response" do
|
||||
account = Settings::Account.create! valid_attributes
|
||||
get :edit, params: {id: account.to_param}, session: valid_session
|
||||
expect(response).to be_success
|
||||
end
|
||||
end
|
||||
|
||||
describe "POST #create" do
|
||||
context "with valid params" do
|
||||
it "creates a new Settings::Account" do
|
||||
expect {
|
||||
post :create, params: {settings_account: valid_attributes}, session: valid_session
|
||||
}.to change(Settings::Account, :count).by(1)
|
||||
end
|
||||
|
||||
it "redirects to the created settings_account" do
|
||||
post :create, params: {settings_account: valid_attributes}, session: valid_session
|
||||
expect(response).to redirect_to(Settings::Account.last)
|
||||
end
|
||||
end
|
||||
|
||||
context "with invalid params" do
|
||||
it "returns a success response (i.e. to display the 'new' template)" do
|
||||
post :create, params: {settings_account: invalid_attributes}, session: valid_session
|
||||
expect(response).to be_success
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
describe "PUT #update" do
|
||||
context "with valid params" do
|
||||
let(:new_attributes) {
|
||||
skip("Add a hash of attributes valid for your model")
|
||||
}
|
||||
|
||||
it "updates the requested settings_account" do
|
||||
account = Settings::Account.create! valid_attributes
|
||||
put :update, params: {id: account.to_param, settings_account: new_attributes}, session: valid_session
|
||||
account.reload
|
||||
skip("Add assertions for updated state")
|
||||
end
|
||||
|
||||
it "redirects to the settings_account" do
|
||||
account = Settings::Account.create! valid_attributes
|
||||
put :update, params: {id: account.to_param, settings_account: valid_attributes}, session: valid_session
|
||||
expect(response).to redirect_to(account)
|
||||
end
|
||||
end
|
||||
|
||||
context "with invalid params" do
|
||||
it "returns a success response (i.e. to display the 'edit' template)" do
|
||||
account = Settings::Account.create! valid_attributes
|
||||
put :update, params: {id: account.to_param, settings_account: invalid_attributes}, session: valid_session
|
||||
expect(response).to be_success
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
describe "DELETE #destroy" do
|
||||
it "destroys the requested settings_account" do
|
||||
account = Settings::Account.create! valid_attributes
|
||||
expect {
|
||||
delete :destroy, params: {id: account.to_param}, session: valid_session
|
||||
}.to change(Settings::Account, :count).by(-1)
|
||||
end
|
||||
|
||||
it "redirects to the settings_accounts list" do
|
||||
account = Settings::Account.create! valid_attributes
|
||||
delete :destroy, params: {id: account.to_param}, session: valid_session
|
||||
expect(response).to redirect_to(settings_accounts_url)
|
||||
end
|
||||
end
|
||||
|
||||
end
|
||||
15
spec/helpers/settings/accounts_helper_spec.rb
Normal file
15
spec/helpers/settings/accounts_helper_spec.rb
Normal file
@@ -0,0 +1,15 @@
|
||||
require 'rails_helper'
|
||||
|
||||
# Specs in this file have access to a helper object that includes
|
||||
# the Settings::AccountsHelper. For example:
|
||||
#
|
||||
# describe Settings::AccountsHelper do
|
||||
# describe "string concat" do
|
||||
# it "concats two strings with spaces" do
|
||||
# expect(helper.concat_strings("this","that")).to eq("this that")
|
||||
# end
|
||||
# end
|
||||
# end
|
||||
RSpec.describe Settings::AccountsHelper, type: :helper do
|
||||
pending "add some examples to (or delete) #{__FILE__}"
|
||||
end
|
||||
5
spec/models/account_spec.rb
Normal file
5
spec/models/account_spec.rb
Normal file
@@ -0,0 +1,5 @@
|
||||
require 'rails_helper'
|
||||
|
||||
RSpec.describe Account, type: :model do
|
||||
pending "add some examples to (or delete) #{__FILE__}"
|
||||
end
|
||||
5
spec/models/settings/account_spec.rb
Normal file
5
spec/models/settings/account_spec.rb
Normal file
@@ -0,0 +1,5 @@
|
||||
require 'rails_helper'
|
||||
|
||||
RSpec.describe Settings::Account, type: :model do
|
||||
pending "add some examples to (or delete) #{__FILE__}"
|
||||
end
|
||||
10
spec/requests/settings/settings_accounts_spec.rb
Normal file
10
spec/requests/settings/settings_accounts_spec.rb
Normal file
@@ -0,0 +1,10 @@
|
||||
require 'rails_helper'
|
||||
|
||||
RSpec.describe "Settings::Accounts", type: :request do
|
||||
describe "GET /settings_accounts" do
|
||||
it "works! (now write some real specs)" do
|
||||
get settings_accounts_path
|
||||
expect(response).to have_http_status(200)
|
||||
end
|
||||
end
|
||||
end
|
||||
39
spec/routing/settings/accounts_routing_spec.rb
Normal file
39
spec/routing/settings/accounts_routing_spec.rb
Normal file
@@ -0,0 +1,39 @@
|
||||
require "rails_helper"
|
||||
|
||||
RSpec.describe Settings::AccountsController, type: :routing do
|
||||
describe "routing" do
|
||||
|
||||
it "routes to #index" do
|
||||
expect(:get => "/settings/accounts").to route_to("settings/accounts#index")
|
||||
end
|
||||
|
||||
it "routes to #new" do
|
||||
expect(:get => "/settings/accounts/new").to route_to("settings/accounts#new")
|
||||
end
|
||||
|
||||
it "routes to #show" do
|
||||
expect(:get => "/settings/accounts/1").to route_to("settings/accounts#show", :id => "1")
|
||||
end
|
||||
|
||||
it "routes to #edit" do
|
||||
expect(:get => "/settings/accounts/1/edit").to route_to("settings/accounts#edit", :id => "1")
|
||||
end
|
||||
|
||||
it "routes to #create" do
|
||||
expect(:post => "/settings/accounts").to route_to("settings/accounts#create")
|
||||
end
|
||||
|
||||
it "routes to #update via PUT" do
|
||||
expect(:put => "/settings/accounts/1").to route_to("settings/accounts#update", :id => "1")
|
||||
end
|
||||
|
||||
it "routes to #update via PATCH" do
|
||||
expect(:patch => "/settings/accounts/1").to route_to("settings/accounts#update", :id => "1")
|
||||
end
|
||||
|
||||
it "routes to #destroy" do
|
||||
expect(:delete => "/settings/accounts/1").to route_to("settings/accounts#destroy", :id => "1")
|
||||
end
|
||||
|
||||
end
|
||||
end
|
||||
21
spec/views/settings/accounts/edit.html.erb_spec.rb
Normal file
21
spec/views/settings/accounts/edit.html.erb_spec.rb
Normal file
@@ -0,0 +1,21 @@
|
||||
require 'rails_helper'
|
||||
|
||||
RSpec.describe "settings/accounts/edit", type: :view do
|
||||
before(:each) do
|
||||
@settings_account = assign(:settings_account, Settings::Account.create!(
|
||||
:title => "MyString",
|
||||
:account_type => "MyString"
|
||||
))
|
||||
end
|
||||
|
||||
it "renders the edit settings_account form" do
|
||||
render
|
||||
|
||||
assert_select "form[action=?][method=?]", settings_account_path(@settings_account), "post" do
|
||||
|
||||
assert_select "input[name=?]", "settings_account[title]"
|
||||
|
||||
assert_select "input[name=?]", "settings_account[account_type]"
|
||||
end
|
||||
end
|
||||
end
|
||||
22
spec/views/settings/accounts/index.html.erb_spec.rb
Normal file
22
spec/views/settings/accounts/index.html.erb_spec.rb
Normal file
@@ -0,0 +1,22 @@
|
||||
require 'rails_helper'
|
||||
|
||||
RSpec.describe "settings/accounts/index", type: :view do
|
||||
before(:each) do
|
||||
assign(:settings_accounts, [
|
||||
Settings::Account.create!(
|
||||
:title => "Title",
|
||||
:account_type => "Account Type"
|
||||
),
|
||||
Settings::Account.create!(
|
||||
:title => "Title",
|
||||
:account_type => "Account Type"
|
||||
)
|
||||
])
|
||||
end
|
||||
|
||||
it "renders a list of settings/accounts" do
|
||||
render
|
||||
assert_select "tr>td", :text => "Title".to_s, :count => 2
|
||||
assert_select "tr>td", :text => "Account Type".to_s, :count => 2
|
||||
end
|
||||
end
|
||||
21
spec/views/settings/accounts/new.html.erb_spec.rb
Normal file
21
spec/views/settings/accounts/new.html.erb_spec.rb
Normal file
@@ -0,0 +1,21 @@
|
||||
require 'rails_helper'
|
||||
|
||||
RSpec.describe "settings/accounts/new", type: :view do
|
||||
before(:each) do
|
||||
assign(:settings_account, Settings::Account.new(
|
||||
:title => "MyString",
|
||||
:account_type => "MyString"
|
||||
))
|
||||
end
|
||||
|
||||
it "renders new settings_account form" do
|
||||
render
|
||||
|
||||
assert_select "form[action=?][method=?]", settings_accounts_path, "post" do
|
||||
|
||||
assert_select "input[name=?]", "settings_account[title]"
|
||||
|
||||
assert_select "input[name=?]", "settings_account[account_type]"
|
||||
end
|
||||
end
|
||||
end
|
||||
16
spec/views/settings/accounts/show.html.erb_spec.rb
Normal file
16
spec/views/settings/accounts/show.html.erb_spec.rb
Normal file
@@ -0,0 +1,16 @@
|
||||
require 'rails_helper'
|
||||
|
||||
RSpec.describe "settings/accounts/show", type: :view do
|
||||
before(:each) do
|
||||
@settings_account = assign(:settings_account, Settings::Account.create!(
|
||||
:title => "Title",
|
||||
:account_type => "Account Type"
|
||||
))
|
||||
end
|
||||
|
||||
it "renders attributes in <p>" do
|
||||
render
|
||||
expect(rendered).to match(/Title/)
|
||||
expect(rendered).to match(/Account Type/)
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user