Sha256: 514acbd16ce7811ce67c50a4cbf8265ab201d32194cc712472b587a1b17378b6
Contents?: true
Size: 544 Bytes
Versions: 3
Compression:
Stored size: 544 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 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
3 entries across 3 versions & 1 rubygems