Sha256: 055bbd620b8ddd83ac735eb37ffa8cee07ed44705bea4de4582c58db57a97dd2

Contents?: true

Size: 714 Bytes

Versions: 11

Compression:

Stored size: 714 Bytes

Contents

# frozen_string_literal: true
module Alchemy
  module TestSupport
    # Helpers for integration specs
    #
    # This file is included in spec_helper.rb
    #
    module IntegrationHelpers
      # Used to stub the current_alchemy_user
      #
      # Pass either a user object or a symbol in the format of ':as_admin'.
      # The browser language is set to english ('en')
      #
      def authorize_user(user_or_role = nil)
        if user_or_role.is_a?(Alchemy.user_class)
          user = user_or_role
        else
          user = build(:alchemy_dummy_user, user_or_role)
        end
        allow_any_instance_of(ApplicationController).to receive(:current_user).and_return(user)
      end
    end
  end
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
alchemy_cms-5.1.10 lib/alchemy/test_support/integration_helpers.rb
alchemy_cms-5.1.9 lib/alchemy/test_support/integration_helpers.rb
alchemy_cms-5.1.8 lib/alchemy/test_support/integration_helpers.rb
alchemy_cms-5.1.7 lib/alchemy/test_support/integration_helpers.rb
alchemy_cms-5.1.6 lib/alchemy/test_support/integration_helpers.rb
alchemy_cms-5.1.5 lib/alchemy/test_support/integration_helpers.rb
alchemy_cms-5.1.4 lib/alchemy/test_support/integration_helpers.rb
alchemy_cms-5.1.3 lib/alchemy/test_support/integration_helpers.rb
alchemy_cms-5.1.2 lib/alchemy/test_support/integration_helpers.rb
alchemy_cms-5.1.1 lib/alchemy/test_support/integration_helpers.rb
alchemy_cms-5.1.0 lib/alchemy/test_support/integration_helpers.rb