Sha256: 576f3cffb10f9ba3fb152b7fdd73fc45c6cf52659987cbbdd6959a6923353f1d
Contents?: true
Size: 982 Bytes
Versions: 64
Compression:
Stored size: 982 Bytes
Contents
# -*- encoding: utf-8 -*- require 'spec_helper' describe "produce_types/index" do before(:each) do assign(:produce_types, [ stub_model(ProduceType, :name => "Name", :display_name => "ja: テキスト", :note => "MyText", :position => 1 ), stub_model(ProduceType, :name => "Name", :display_name => "ja: テキスト", :note => "MyText", :position => 1 ) ]) end it "renders a list of produce_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", :text => "MyText".to_s, :count => 2 # Run the generator again with the --webrat flag if you want to use webrat matchers assert_select "tr>td", :text => "テキスト".to_s, :count => 2 end end
Version data entries
64 entries across 64 versions & 1 rubygems