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

Version Path
enju_biblio-0.1.0.pre55 spec/views/produce_types/index.html.erb_spec.rb
enju_biblio-0.1.0.pre54 spec/views/produce_types/index.html.erb_spec.rb
enju_biblio-0.1.0.pre53 spec/views/produce_types/index.html.erb_spec.rb
enju_biblio-0.1.0.pre52 spec/views/produce_types/index.html.erb_spec.rb
enju_biblio-0.1.0.pre51 spec/views/produce_types/index.html.erb_spec.rb
enju_biblio-0.1.0.pre50 spec/views/produce_types/index.html.erb_spec.rb
enju_biblio-0.1.0.pre49 spec/views/produce_types/index.html.erb_spec.rb
enju_biblio-0.1.0.pre48 spec/views/produce_types/index.html.erb_spec.rb
enju_biblio-0.1.0.pre47 spec/views/produce_types/index.html.erb_spec.rb
enju_biblio-0.1.0.pre46 spec/views/produce_types/index.html.erb_spec.rb
enju_biblio-0.1.0.pre45 spec/views/produce_types/index.html.erb_spec.rb
enju_biblio-0.1.0.pre44 spec/views/produce_types/index.html.erb_spec.rb
enju_biblio-0.1.0.pre43 spec/views/produce_types/index.html.erb_spec.rb
enju_biblio-0.1.0.pre42 spec/views/produce_types/index.html.erb_spec.rb
enju_biblio-0.1.0.pre41 spec/views/produce_types/index.html.erb_spec.rb
enju_biblio-0.1.0.pre40 spec/views/produce_types/index.html.erb_spec.rb
enju_biblio-0.1.0.pre39 spec/views/produce_types/index.html.erb_spec.rb
enju_biblio-0.1.0.pre38 spec/views/produce_types/index.html.erb_spec.rb
enju_biblio-0.1.0.pre37 spec/views/produce_types/index.html.erb_spec.rb
enju_biblio-0.1.0.pre36 spec/views/produce_types/index.html.erb_spec.rb