Sha256: 86bfd15e9de178a2a4a981b8d118b5b8e9d359da04a1a10c5364d2ef8e6ffe22
Contents?: true
Size: 851 Bytes
Versions: 12
Compression:
Stored size: 851 Bytes
Contents
Feature: render_template matcher This matcher just delegates to the Rails assertion method "assert_template". For complete info on the available options, please take a look at the Rails documentation. This method is available in spec/controllers and spec/requests. Scenario: render_template with three possible options Given a file named "spec/controllers/gadgets_spec.rb" with: """ require "spec_helper" describe GadgetsController do describe "#index" do subject { get :index } specify { should render_template(:index) } specify { should render_template("index") } specify { should render_template("gadgets/index") } end end """ When I run "rspec spec/controllers/gadgets_spec.rb" Then the output should contain "3 examples, 0 failures"
Version data entries
12 entries across 12 versions & 1 rubygems