Sha256: cc9a0953a3b7e7e26ffacce5ee6e399772aa90c7c6c4e03357d612ba540585a4
Contents?: true
Size: 770 Bytes
Versions: 87
Compression:
Stored size: 770 Bytes
Contents
require 'spec_helper' describe "realize_types/edit" do before(:each) do @realize_type = assign(:realize_type, stub_model(RealizeType, :name => "MyString", :display_name => "MyText", :note => "MyText", :position => 1 )) end it "renders the edit realize_type form" do render # Run the generator again with the --webrat flag if you want to use webrat matchers assert_select "form", :action => realize_types_path(@realize_type), :method => "post" do assert_select "input#realize_type_name", :name => "realize_type[name]" assert_select "textarea#realize_type_display_name", :name => "realize_type[display_name]" assert_select "textarea#realize_type_note", :name => "realize_type[note]" end end end
Version data entries
87 entries across 87 versions & 1 rubygems