Sha256: fc3dc8f7284c923826ca790a45ac5c7ff8f54de7593c149f527d76caf350d2ab

Contents?: true

Size: 919 Bytes

Versions: 5

Compression:

Stored size: 919 Bytes

Contents

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
        set_phantomjs_browser_language("en")
        allow_any_instance_of(ApplicationController).to receive(:current_user).and_return(user)
      end

      def set_phantomjs_browser_language(lang = nil)
        if Capybara.current_driver == :poltergeist
          page.driver.headers = {"Accept-Language" => lang}
        end
      end
    end

  end
end

Version data entries

5 entries across 5 versions & 2 rubygems

Version Path
alchemy_cms-3.2.1 lib/alchemy/test_support/integration_helpers.rb
lc_alchemy_cms-3.2.1 lib/alchemy/test_support/integration_helpers.rb
lc_alchemy_cms-3.2.0 lib/alchemy/test_support/integration_helpers.rb
alchemy_cms-3.2.0 lib/alchemy/test_support/integration_helpers.rb
alchemy_cms-3.2.0.rc1 lib/alchemy/test_support/integration_helpers.rb