Sha256: e999339a8bc6cbebc8bb3d03f59516042764e7b580e3c78caaf27d0118466447
Contents?: true
Size: 1.05 KB
Versions: 19
Compression:
Stored size: 1.05 KB
Contents
require 'rails_helper' describe "checkout_types/show" do before(:each) do @checkout_type = assign(:checkout_type, stub_model(CheckoutType, name: "Name", display_name: "MyText", note: "MyText", position: 1 )) end it "renders attributes in <p>" do allow(view).to receive(:policy).and_return double(create?: true, update?: true) 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
19 entries across 19 versions & 1 rubygems