recaptcha_helper_spec.rb 665 Bytes
Newer Older
1 2 3 4
# frozen_string_literal: true

require 'spec_helper'

5
RSpec.describe RecaptchaHelper, type: :helper do
6 7 8 9 10 11
  let(:session) { {} }

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

12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
  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(false)
      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(true)
      end
    end
  end
end