Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7656489
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T12:46:35+00:00 2026-05-31T12:46:35+00:00

I try test my view with Rspec. In my view, I have a Decorator

  • 0

I try test my view with Rspec. In my view, I have a Decorator generate by Draper. This Decorator is expose by decent_exposure gem.

I create my rspec test like that :

require 'spec_helper'

describe "boats/show.html.slim" do

  let(:boat_decorate) { BoatDecorator.new(get_boat) }
  let(:search) { Search.new }

  before do
    view.stub(:boat_decorate) { boat_decorate }
    view.stub(:search) { search }
    render :template => 'boats/show.html.slim'
  end 

  it 'should see titlte' do
    rendered.should have_selector(:h1, :content => boat_decorate.title)
  end                                                                                                                                                                                
end

In my stub of my helper I generate the Draper Decorator. In this Decorator I have method to call some helper link_to.

class BoatDecorator < ApplicationDecorator

  decorates :boat

  def region_link
    h.link_to region_name, '#', :title => region_name                                                                                                                                
  end

end

But If I launch this test I have an error :

  1) boats/show.html.slim should see titlte
     Failure/Error: render :template => 'boats/show.html.slim'
     ActionView::Template::Error:
       undefined method `link_to' for nil:NilClass

I don’t want stub all helper call by my Decorator. So how can I do ?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-31T12:46:36+00:00Added an answer on May 31, 2026 at 12:46 pm

    We need do like a Decorator spec and add in setup : ApplicationController.new.set_current_view_context

    require 'spec_helper'
    
    describe "boats/show.html.slim" do
    
      let(:boat_decorate) { BoatDecorator.new(get_boat) }
      let(:search) { Search.new }
    
      before do
        ApplicationController.new.set_current_view_context
        view.stub(:boat_decorate) { boat_decorate }
        view.stub(:search) { search }
        render :template => 'boats/show.html.slim'
      end 
    
      it 'should see titlte' do
        rendered.should have_selector(:h1, :content => boat_decorate.title)
      end                                                                                                                                                                                
    end
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

So I have a base table that looks something like this. SELECT [BILL_MONTH] ,[BILL_YEAR]
This is getting silly and driving me crackers. I have a small test view
I have an web application in PHP with urls like this: https://www.domain.com/?mod=test&act=view My problem
I'm starting to try and test my Doctrine objects with PHPUnit, and would like
the code below gives compilation error when I try to create test t[2]; because
I have following code public class TEST { public static void main(String arg[]){ try
When I try this code: a, b, c = (1, 2, 3) def test():
I'm making a simple test app that navigates a category tree. Whenever I try
I would like to test the validation of submitted DTO. This is the bare
I have an user view model that has the following properties: public User user;

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.