Sha256: 863014318c1cc2ee3754f042630ef5d63ca292671d3f8c61894cbc96b4cd1582

Contents?: true

Size: 999 Bytes

Versions: 27

Compression:

Stored size: 999 Bytes

Contents

require 'rails_helper'

describe "realize_types/index" do
  before(:each) do
    assign(:realize_types, [
      stub_model(RealizeType,
        name: "Name",
        display_name: "ja: テキスト",
        note: "MyText",
        position: 1
      ),
      stub_model(RealizeType,
        name: "Name",
        display_name: "ja: テキスト",
        note: "MyText",
        position: 1
      )
    ])
  end

  it "renders a list of realize_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

Version Path
enju_biblio-0.3.18 spec/views/realize_types/index.html.erb_spec.rb
enju_biblio-0.3.17 spec/views/realize_types/index.html.erb_spec.rb
enju_biblio-0.3.16 spec/views/realize_types/index.html.erb_spec.rb
enju_biblio-0.3.15 spec/views/realize_types/index.html.erb_spec.rb
enju_biblio-0.3.14 spec/views/realize_types/index.html.erb_spec.rb
enju_biblio-0.3.13 spec/views/realize_types/index.html.erb_spec.rb
enju_biblio-0.3.12 spec/views/realize_types/index.html.erb_spec.rb
enju_biblio-0.3.11 spec/views/realize_types/index.html.erb_spec.rb
enju_biblio-0.3.10 spec/views/realize_types/index.html.erb_spec.rb
enju_biblio-0.3.10.rc.3 spec/views/realize_types/index.html.erb_spec.rb
enju_biblio-0.3.10.rc.2 spec/views/realize_types/index.html.erb_spec.rb
enju_biblio-0.3.10.rc.1 spec/views/realize_types/index.html.erb_spec.rb
enju_biblio-0.3.9 spec/views/realize_types/index.html.erb_spec.rb
enju_biblio-0.4.0.rc.1 spec/views/realize_types/index.html.erb_spec.rb
enju_biblio-0.3.8 spec/views/realize_types/index.html.erb_spec.rb
enju_biblio-0.3.7 spec/views/realize_types/index.html.erb_spec.rb
enju_biblio-0.3.6 spec/views/realize_types/index.html.erb_spec.rb
enju_biblio-0.4.0.beta.2 spec/views/realize_types/index.html.erb_spec.rb
enju_biblio-0.4.0.beta.1 spec/views/realize_types/index.html.erb_spec.rb
enju_biblio-0.3.5 spec/views/realize_types/index.html.erb_spec.rb