Sha256: 2b828ae0241aab998133aa94bcbbbaaa92c4095befa8217839ce6bed01824b08
Contents?: true
Size: 944 Bytes
Versions: 20
Compression:
Stored size: 944 Bytes
Contents
# -*- encoding: utf-8 -*- require 'spec_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 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
20 entries across 20 versions & 1 rubygems