Sha256: 25c23e12c6a71eb95908ddfa97b343a107cc1f582d33c5ed90274a3e4132d1ca
Contents?: true
Size: 803 Bytes
Versions: 87
Compression:
Stored size: 803 Bytes
Contents
require 'spec_helper' describe "realize_types/show" do before(:each) do @realize_type = assign(:realize_type, stub_model(RealizeType, :name => "Name", :display_name => "MyText", :note => "MyText", :position => 1 )) end it "renders attributes in <p>" do render # Run the generator again with the --webrat flag if you want to use webrat matchers rendered.should match(/Name/) # Run the generator again with the --webrat flag if you want to use webrat matchers rendered.should match(/MyText/) # Run the generator again with the --webrat flag if you want to use webrat matchers rendered.should match(/MyText/) # Run the generator again with the --webrat flag if you want to use webrat matchers rendered.should match(/1/) end end
Version data entries
87 entries across 87 versions & 1 rubygems