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

Version Path
rspec-rails-2.4.1 features/matchers/render_template_matcher.feature
rspec-rails-2.4.0 features/matchers/render_template_matcher.feature
rspec-rails-2.3.1 features/matchers/render_template_matcher.feature
rspec-rails-2.3.0 features/matchers/render_template_matcher.feature
rspec-rails-2.2.1 features/matchers/render_template_matcher.feature
rspec-rails-2.2.0 features/matchers/render_template_matcher.feature
rspec-rails-2.1.0 features/matchers/render_template_matcher.feature
rspec-rails-2.0.1 features/matchers/render_template_matcher.feature
rspec-rails-2.0.0 features/matchers/render_template_matcher.feature
rspec-rails-2.0.0.rc features/matchers/render_template_matcher.feature
rspec-rails-2.0.0.beta.22 features/matchers/render_template_matcher.feature
rspec-rails-2.0.0.beta.20 features/matchers/render_template_matcher.feature