scaffold models

This commit is contained in:
Min Zeya Phyo
2017-04-20 17:01:14 +06:30
parent 0a97947259
commit 0af7d78c3c
145 changed files with 4127 additions and 2 deletions

View File

@@ -0,0 +1,37 @@
require 'rails_helper'
RSpec.describe "crm/customers/index", type: :view do
before(:each) do
assign(:crm_customers, [
Crm::Customer.create!(
:name => "Name",
:company => "Company",
:contact_no => "Contact No",
:email => "Email",
:membership => nil,
:membership_type => "Membership Type",
:membership_authentication_code => "Membership Authentication Code"
),
Crm::Customer.create!(
:name => "Name",
:company => "Company",
:contact_no => "Contact No",
:email => "Email",
:membership => nil,
:membership_type => "Membership Type",
:membership_authentication_code => "Membership Authentication Code"
)
])
end
it "renders a list of crm/customers" do
render
assert_select "tr>td", :text => "Name".to_s, :count => 2
assert_select "tr>td", :text => "Company".to_s, :count => 2
assert_select "tr>td", :text => "Contact No".to_s, :count => 2
assert_select "tr>td", :text => "Email".to_s, :count => 2
assert_select "tr>td", :text => nil.to_s, :count => 2
assert_select "tr>td", :text => "Membership Type".to_s, :count => 2
assert_select "tr>td", :text => "Membership Authentication Code".to_s, :count => 2
end
end