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