Sha256: 6f69ea194f7ae06b893f8223913e4591da411cf87a8f0de8b069a58a827b1bf2
Contents?: true
Size: 787 Bytes
Versions: 26
Compression:
Stored size: 787 Bytes
Contents
require 'spec_helper' describe "import_requests/show" do before(:each) do @import_request = assign(:import_request, stub_model(ImportRequest, :isbn => "1111111111", :created_at => Time.zone.now )) 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(/Id/) # Run the generator again with the --webrat flag if you want to use webrat matchers rendered.should match(/ISBN/) # Run the generator again with the --webrat flag if you want to use webrat matchers rendered.should match(localized_state('pending')) # Run the generator again with the --webrat flag if you want to use webrat matchers rendered.should match(/1/) end end
Version data entries
26 entries across 26 versions & 1 rubygems