Sha256: baa1cd775b99c843eb078c110715ae90c281060b7ebed904706a82de25bce159

Contents?: true

Size: 658 Bytes

Versions: 33

Compression:

Stored size: 658 Bytes

Contents

require 'spec_helper'

describe "creates/edit" do
  fixtures :create_types

  before(:each) do
    @create = assign(:create, stub_model(Create,
      :work_id => 1,
      :agent_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

33 entries across 33 versions & 1 rubygems

Version Path
enju_biblio-0.1.3 spec/views/creates/edit.html.erb_spec.rb
enju_biblio-0.1.2 spec/views/creates/edit.html.erb_spec.rb
enju_biblio-0.1.1 spec/views/creates/edit.html.erb_spec.rb
enju_biblio-0.1.0 spec/views/creates/edit.html.erb_spec.rb
enju_biblio-0.1.0.pre71 spec/views/creates/edit.html.erb_spec.rb
enju_biblio-0.1.0.pre70 spec/views/creates/edit.html.erb_spec.rb
enju_biblio-0.1.0.pre69 spec/views/creates/edit.html.erb_spec.rb
enju_biblio-0.1.0.pre68 spec/views/creates/edit.html.erb_spec.rb
enju_biblio-0.1.0.pre67 spec/views/creates/edit.html.erb_spec.rb
enju_biblio-0.1.0.pre66 spec/views/creates/edit.html.erb_spec.rb
enju_biblio-0.1.0.pre65 spec/views/creates/edit.html.erb_spec.rb
enju_biblio-0.1.0.pre64 spec/views/creates/edit.html.erb_spec.rb
enju_biblio-0.1.0.pre63 spec/views/creates/edit.html.erb_spec.rb
enju_biblio-0.1.0.pre62 spec/views/creates/edit.html.erb_spec.rb
enju_biblio-0.1.0.pre61 spec/views/creates/edit.html.erb_spec.rb
enju_biblio-0.1.0.pre60 spec/views/creates/edit.html.erb_spec.rb
enju_biblio-0.1.0.pre59 spec/views/creates/edit.html.erb_spec.rb
enju_biblio-0.1.0.pre58 spec/views/creates/edit.html.erb_spec.rb
enju_biblio-0.1.0.pre57 spec/views/creates/edit.html.erb_spec.rb
enju_biblio-0.1.0.pre56 spec/views/creates/edit.html.erb_spec.rb