DEV Community

n350071πŸ‡―πŸ‡΅
n350071πŸ‡―πŸ‡΅

Posted on

2

[RSpec] for helper

TL;DR

define let(:helper) { get_helper } and use it as the receiver.

πŸ‘ You can write like this

describe ApplicationController, type: :controller do
  let(:helper) { get_helper }

  describe '#hello' do
    it { expect(helper.hello).to eq 'hello' }
  end
end

πŸ”— Parent Note

Top comments (0)

Billboard image

Create up to 10 Postgres Databases on Neon's free plan.

If you're starting a new project, Neon has got your databases covered. No credit cards. No trials. No getting in your way.

Try Neon for Free β†’

πŸ‘‹ Kindness is contagious

Please leave a ❀️ or a friendly comment on this post if you found it helpful!

Okay