Sha256: bc3dfbf9ba2211ca49fd61bb11b86a31ad3ff44ae5c2606a33e2b5f32a37c037

Contents?: true

Size: 1.02 KB

Versions: 3

Compression:

Stored size: 1.02 KB

Contents

# -*- encoding: utf-8 -*-
require 'spec_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

3 entries across 3 versions & 1 rubygems

Version Path
enju_biblio-0.2.0.beta.3 spec/views/realize_types/index.html.erb_spec.rb
enju_biblio-0.2.0.beta.2 spec/views/realize_types/index.html.erb_spec.rb
enju_biblio-0.2.0.beta.1 spec/views/realize_types/index.html.erb_spec.rb