basic layout template

This commit is contained in:
Min Zeya Phyo
2017-04-05 08:24:21 +06:30
parent bcdce092cc
commit 0ddc7bdb44
66 changed files with 7049 additions and 48 deletions

View File

@@ -0,0 +1,159 @@
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.
RSpec.describe EmployeesController, type: :controller do
# This should return the minimal set of attributes required to create a valid
# Employee. As you add validations to Employee, 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
# EmployeesController. Be sure to keep this updated too.
let(:valid_session) { {} }
describe "GET #index" do
it "assigns all employees as @employees" do
employee = Employee.create! valid_attributes
get :index, params: {}, session: valid_session
expect(assigns(:employees)).to eq([employee])
end
end
describe "GET #show" do
it "assigns the requested employee as @employee" do
employee = Employee.create! valid_attributes
get :show, params: {id: employee.to_param}, session: valid_session
expect(assigns(:employee)).to eq(employee)
end
end
describe "GET #new" do
it "assigns a new employee as @employee" do
get :new, params: {}, session: valid_session
expect(assigns(:employee)).to be_a_new(Employee)
end
end
describe "GET #edit" do
it "assigns the requested employee as @employee" do
employee = Employee.create! valid_attributes
get :edit, params: {id: employee.to_param}, session: valid_session
expect(assigns(:employee)).to eq(employee)
end
end
describe "POST #create" do
context "with valid params" do
it "creates a new Employee" do
expect {
post :create, params: {employee: valid_attributes}, session: valid_session
}.to change(Employee, :count).by(1)
end
it "assigns a newly created employee as @employee" do
post :create, params: {employee: valid_attributes}, session: valid_session
expect(assigns(:employee)).to be_a(Employee)
expect(assigns(:employee)).to be_persisted
end
it "redirects to the created employee" do
post :create, params: {employee: valid_attributes}, session: valid_session
expect(response).to redirect_to(Employee.last)
end
end
context "with invalid params" do
it "assigns a newly created but unsaved employee as @employee" do
post :create, params: {employee: invalid_attributes}, session: valid_session
expect(assigns(:employee)).to be_a_new(Employee)
end
it "re-renders the 'new' template" do
post :create, params: {employee: invalid_attributes}, session: valid_session
expect(response).to render_template("new")
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 employee" do
employee = Employee.create! valid_attributes
put :update, params: {id: employee.to_param, employee: new_attributes}, session: valid_session
employee.reload
skip("Add assertions for updated state")
end
it "assigns the requested employee as @employee" do
employee = Employee.create! valid_attributes
put :update, params: {id: employee.to_param, employee: valid_attributes}, session: valid_session
expect(assigns(:employee)).to eq(employee)
end
it "redirects to the employee" do
employee = Employee.create! valid_attributes
put :update, params: {id: employee.to_param, employee: valid_attributes}, session: valid_session
expect(response).to redirect_to(employee)
end
end
context "with invalid params" do
it "assigns the employee as @employee" do
employee = Employee.create! valid_attributes
put :update, params: {id: employee.to_param, employee: invalid_attributes}, session: valid_session
expect(assigns(:employee)).to eq(employee)
end
it "re-renders the 'edit' template" do
employee = Employee.create! valid_attributes
put :update, params: {id: employee.to_param, employee: invalid_attributes}, session: valid_session
expect(response).to render_template("edit")
end
end
end
describe "DELETE #destroy" do
it "destroys the requested employee" do
employee = Employee.create! valid_attributes
expect {
delete :destroy, params: {id: employee.to_param}, session: valid_session
}.to change(Employee, :count).by(-1)
end
it "redirects to the employees list" do
employee = Employee.create! valid_attributes
delete :destroy, params: {id: employee.to_param}, session: valid_session
expect(response).to redirect_to(employees_url)
end
end
end

View File

@@ -0,0 +1,19 @@
require 'rails_helper'
RSpec.describe InstallController, type: :controller do
describe "GET #index" do
it "returns http success" do
get :index
expect(response).to have_http_status(:success)
end
end
describe "GET #create" do
it "returns http success" do
get :create
expect(response).to have_http_status(:success)
end
end
end

View File

@@ -0,0 +1,15 @@
require 'rails_helper'
# Specs in this file have access to a helper object that includes
# the EmployeesHelper. For example:
#
# describe EmployeesHelper 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 EmployeesHelper, type: :helper do
pending "add some examples to (or delete) #{__FILE__}"
end

View File

@@ -0,0 +1,15 @@
require 'rails_helper'
# Specs in this file have access to a helper object that includes
# the InstallHelper. For example:
#
# describe InstallHelper 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 InstallHelper, type: :helper do
pending "add some examples to (or delete) #{__FILE__}"
end

View File

@@ -0,0 +1,5 @@
require 'rails_helper'
RSpec.describe OrderQueueProcessorJob, type: :job do
pending "add some examples to (or delete) #{__FILE__}"
end

View File

@@ -0,0 +1,5 @@
require 'rails_helper'
RSpec.describe Booking, type: :model do
pending "add some examples to (or delete) #{__FILE__}"
end

View File

@@ -0,0 +1,5 @@
require 'rails_helper'
RSpec.describe RoomBookingOrder, type: :model do
pending "add some examples to (or delete) #{__FILE__}"
end

View File

@@ -0,0 +1,5 @@
require 'rails_helper'
RSpec.describe TableBookingOrder, type: :model do
pending "add some examples to (or delete) #{__FILE__}"
end

View File

@@ -0,0 +1,10 @@
require 'rails_helper'
RSpec.describe "Employees", type: :request do
describe "GET /employees" do
it "works! (now write some real specs)" do
get employees_path
expect(response).to have_http_status(200)
end
end
end

View File

@@ -0,0 +1,39 @@
require "rails_helper"
RSpec.describe EmployeesController, type: :routing do
describe "routing" do
it "routes to #index" do
expect(:get => "/employees").to route_to("employees#index")
end
it "routes to #new" do
expect(:get => "/employees/new").to route_to("employees#new")
end
it "routes to #show" do
expect(:get => "/employees/1").to route_to("employees#show", :id => "1")
end
it "routes to #edit" do
expect(:get => "/employees/1/edit").to route_to("employees#edit", :id => "1")
end
it "routes to #create" do
expect(:post => "/employees").to route_to("employees#create")
end
it "routes to #update via PUT" do
expect(:put => "/employees/1").to route_to("employees#update", :id => "1")
end
it "routes to #update via PATCH" do
expect(:patch => "/employees/1").to route_to("employees#update", :id => "1")
end
it "routes to #destroy" do
expect(:delete => "/employees/1").to route_to("employees#destroy", :id => "1")
end
end
end

View File

@@ -0,0 +1,24 @@
require 'rails_helper'
RSpec.describe "employees/edit", type: :view do
before(:each) do
@employee = assign(:employee, Employee.create!(
:name => "MyString",
:role => "MyString",
:encrypted_access_code => "MyString"
))
end
it "renders the edit employee form" do
render
assert_select "form[action=?][method=?]", employee_path(@employee), "post" do
assert_select "input#employee_name[name=?]", "employee[name]"
assert_select "input#employee_role[name=?]", "employee[role]"
assert_select "input#employee_encrypted_access_code[name=?]", "employee[encrypted_access_code]"
end
end
end

View File

@@ -0,0 +1,25 @@
require 'rails_helper'
RSpec.describe "employees/index", type: :view do
before(:each) do
assign(:employees, [
Employee.create!(
:name => "Name",
:role => "Role",
:encrypted_access_code => "Encrypted Access Code"
),
Employee.create!(
:name => "Name",
:role => "Role",
:encrypted_access_code => "Encrypted Access Code"
)
])
end
it "renders a list of employees" do
render
assert_select "tr>td", :text => "Name".to_s, :count => 2
assert_select "tr>td", :text => "Role".to_s, :count => 2
assert_select "tr>td", :text => "Encrypted Access Code".to_s, :count => 2
end
end

View File

@@ -0,0 +1,24 @@
require 'rails_helper'
RSpec.describe "employees/new", type: :view do
before(:each) do
assign(:employee, Employee.new(
:name => "MyString",
:role => "MyString",
:encrypted_access_code => "MyString"
))
end
it "renders new employee form" do
render
assert_select "form[action=?][method=?]", employees_path, "post" do
assert_select "input#employee_name[name=?]", "employee[name]"
assert_select "input#employee_role[name=?]", "employee[role]"
assert_select "input#employee_encrypted_access_code[name=?]", "employee[encrypted_access_code]"
end
end
end

View File

@@ -0,0 +1,18 @@
require 'rails_helper'
RSpec.describe "employees/show", type: :view do
before(:each) do
@employee = assign(:employee, Employee.create!(
:name => "Name",
:role => "Role",
:encrypted_access_code => "Encrypted Access Code"
))
end
it "renders attributes in <p>" do
render
expect(rendered).to match(/Name/)
expect(rendered).to match(/Role/)
expect(rendered).to match(/Encrypted Access Code/)
end
end

View File

@@ -0,0 +1,5 @@
require 'rails_helper'
RSpec.describe "install/create.html.erb", type: :view do
pending "add some examples to (or delete) #{__FILE__}"
end

View File

@@ -0,0 +1,5 @@
require 'rails_helper'
RSpec.describe "install/index.html.erb", type: :view do
pending "add some examples to (or delete) #{__FILE__}"
end