Sha256: e37bab8c24f35543ca55c61551dbd9a5d5d1e6cc1fa81ac5e6df1d0a63fca298

Contents?: true

Size: 659 Bytes

Versions: 51

Compression:

Stored size: 659 Bytes

Contents

require 'spec_helper'

describe "creates/edit" do
  fixtures :create_types

  before(:each) do
    @create = assign(:create, stub_model(Create,
      :work_id => 1,
      :patron_id => 1
    ))
    @create_types = CreateType.all
    @ability = Object.new
    @ability.extend(CanCan::Ability)
    controller.stub(:current_ability) { @ability }
  end

  it "renders the edit create form" do
    render

    # Run the generator again with the --webrat flag if you want to use webrat matchers
    assert_select "form", :action => creates_path(@create), :method => "post" do
      assert_select "input#create_work_id", :name => "create[work_id]"
    end
  end
end

Version data entries

51 entries across 51 versions & 1 rubygems

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