Sha256: f37a802767ed46b1ee176ac15893a16d839822e734a19fc79b5f16171bda17e6

Contents?: true

Size: 1.06 KB

Versions: 19

Compression:

Stored size: 1.06 KB

Contents

require 'rails_helper'

describe "use_restrictions/show" do
  before(:each) do
    @use_restriction = assign(:use_restriction, stub_model(UseRestriction,
                                                           name: "Name",
                                                           display_name: "MyText",
                                                           note: "MyText",
                                                           position: 1
    ))
  end

  it "renders attributes in <p>" do
    allow(view).to receive(:policy).and_return double(update?: true)
    render
    # Run the generator again with the --webrat flag if you want to use webrat matchers
    rendered.should match(/Name/)
    # Run the generator again with the --webrat flag if you want to use webrat matchers
    rendered.should match(/MyText/)
    # Run the generator again with the --webrat flag if you want to use webrat matchers
    rendered.should match(/MyText/)
    # Run the generator again with the --webrat flag if you want to use webrat matchers
    rendered.should match(/1/)
  end
end

Version data entries

19 entries across 19 versions & 1 rubygems

Version Path
enju_circulation-0.3.11 spec/views/use_restrictions/show.html.erb_spec.rb
enju_circulation-0.3.10 spec/views/use_restrictions/show.html.erb_spec.rb
enju_circulation-0.3.9 spec/views/use_restrictions/show.html.erb_spec.rb
enju_circulation-0.4.0.rc.1 spec/views/use_restrictions/show.html.erb_spec.rb
enju_circulation-0.3.8 spec/views/use_restrictions/show.html.erb_spec.rb
enju_circulation-0.3.7 spec/views/use_restrictions/show.html.erb_spec.rb
enju_circulation-0.4.0.beta.4 spec/views/use_restrictions/show.html.erb_spec.rb
enju_circulation-0.4.0.beta.3 spec/views/use_restrictions/show.html.erb_spec.rb
enju_circulation-0.3.6 spec/views/use_restrictions/show.html.erb_spec.rb
enju_circulation-0.4.0.beta.2 spec/views/use_restrictions/show.html.erb_spec.rb
enju_circulation-0.4.0.beta.1 spec/views/use_restrictions/show.html.erb_spec.rb
enju_circulation-0.3.5 spec/views/use_restrictions/show.html.erb_spec.rb
enju_circulation-0.3.4 spec/views/use_restrictions/show.html.erb_spec.rb
enju_circulation-0.3.3 spec/views/use_restrictions/show.html.erb_spec.rb
enju_circulation-0.3.2 spec/views/use_restrictions/show.html.erb_spec.rb
enju_circulation-0.3.1 spec/views/use_restrictions/show.html.erb_spec.rb
enju_circulation-0.3.0 spec/views/use_restrictions/show.html.erb_spec.rb
enju_circulation-0.3.0.rc.1 spec/views/use_restrictions/show.html.erb_spec.rb
enju_circulation-0.3.0.beta.1 spec/views/use_restrictions/show.html.erb_spec.rb