Sha256: 7feb1f8a85469fab59de9f10c2149e60d536dcc2bf6221d464ae9837d722f2fd
Contents?: true
Size: 989 Bytes
Versions: 27
Compression:
Stored size: 989 Bytes
Contents
require 'rails_helper' describe "agent_types/index" do before(:each) do assign(:agent_types, [ stub_model(AgentType, name: "Name", display_name: "ja: テキスト", note: "MyText", position: 1 ), stub_model(AgentType, name: "Name", display_name: "ja: テキスト", note: "MyText", position: 1 ) ]) end it "renders a list of agent_types" do allow(view).to receive(:policy).and_return double(create?: true, update?: true, destroy?: true) render # Run the generator again with the --webrat flag if you want to use webrat matchers assert_select "tr>td", text: "Name".to_s, count: 2 # Run the generator again with the --webrat flag if you want to use webrat matchers assert_select "tr>td:nth-child(3)", /テキスト/ # Run the generator again with the --webrat flag if you want to use webrat matchers assert_select "tr>td:nth-child(3)", /MyText/ end end
Version data entries
27 entries across 27 versions & 1 rubygems