Sha256: 9f334c1eb71512b5d4723cddea366866c6e40c94fb8918f6301bbca9c9f82843

Contents?: true

Size: 766 Bytes

Versions: 51

Compression:

Stored size: 766 Bytes

Contents

require 'spec_helper'

describe "realizes/edit" do
  fixtures :realize_types

  before(:each) do
    @realize = assign(:realize, stub_model(Realize,
      :expression_id => 1,
      :patron_id => 1
    ))
    @realize_types = RealizeType.all
    @ability = Object.new
    @ability.extend(CanCan::Ability)
    controller.stub(:current_ability) { @ability }
  end

  it "renders the edit realize form" do
    render

    # Run the generator again with the --webrat flag if you want to use webrat matchers
    assert_select "form", :action => realizes_path(@realize), :method => "post" do
      assert_select "input#realize_expression_id", :name => "realize[expression_id]"
      assert_select "input#realize_patron_id", :name => "realize[patron_id]"
    end
  end
end

Version data entries

51 entries across 51 versions & 1 rubygems

Version Path
enju_biblio-0.1.0.pre42 spec/views/realizes/edit.html.erb_spec.rb
enju_biblio-0.1.0.pre41 spec/views/realizes/edit.html.erb_spec.rb
enju_biblio-0.1.0.pre40 spec/views/realizes/edit.html.erb_spec.rb
enju_biblio-0.1.0.pre39 spec/views/realizes/edit.html.erb_spec.rb
enju_biblio-0.1.0.pre38 spec/views/realizes/edit.html.erb_spec.rb
enju_biblio-0.1.0.pre37 spec/views/realizes/edit.html.erb_spec.rb
enju_biblio-0.1.0.pre36 spec/views/realizes/edit.html.erb_spec.rb
enju_biblio-0.1.0.pre35 spec/views/realizes/edit.html.erb_spec.rb
enju_biblio-0.1.0.pre34 spec/views/realizes/edit.html.erb_spec.rb
enju_biblio-0.1.0.pre33 spec/views/realizes/edit.html.erb_spec.rb
enju_biblio-0.1.0.pre32 spec/views/realizes/edit.html.erb_spec.rb
enju_biblio-0.1.0.pre31 spec/views/realizes/edit.html.erb_spec.rb
enju_biblio-0.1.0.pre30 spec/views/realizes/edit.html.erb_spec.rb
enju_biblio-0.1.0.pre29 spec/views/realizes/edit.html.erb_spec.rb
enju_biblio-0.1.0.pre28 spec/views/realizes/edit.html.erb_spec.rb
enju_biblio-0.1.0.pre27 spec/views/realizes/edit.html.erb_spec.rb
enju_biblio-0.1.0.pre26 spec/views/realizes/edit.html.erb_spec.rb
enju_biblio-0.1.0.pre25 spec/views/realizes/edit.html.erb_spec.rb
enju_biblio-0.1.0.pre24 spec/views/realizes/edit.html.erb_spec.rb
enju_biblio-0.1.0.pre23 spec/views/realizes/edit.html.erb_spec.rb