summaryrefslogtreecommitdiff
path: root/spec/helpers/recaptcha_helper_spec.rb
blob: 8ad91a0a2174d504d02f8610d02ca96ea8297b44 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe RecaptchaHelper, type: :helper do
  let(:session) { {} }

  before do
    allow(helper).to receive(:session) { session }
  end

  describe '.show_recaptcha_sign_up?' do
    context 'when reCAPTCHA is disabled' do
      it 'returns false' do
        stub_application_setting(recaptcha_enabled: false)

        expect(helper.show_recaptcha_sign_up?).to be_falsey
      end
    end

    context 'when reCAPTCHA is enabled' do
      it 'returns true' do
        stub_application_setting(recaptcha_enabled: true)

        expect(helper.show_recaptcha_sign_up?).to be_truthy
      end
    end
  end
end