Sha256: 0f82daad934b61e354390f10726d33c3cc711d98a2b85a6f5d4582a93afd5d5c

Contents?: true

Size: 934 Bytes

Versions: 2

Compression:

Stored size: 934 Bytes

Contents

require 'test_helper'

module ActiveModel
  class Serializer
    class UrlHelpersTest < Minitest::Test
      include Rails.application.routes.url_helpers

      def setup
        Object.const_set 'UserController', Class.new(ActionController::Base) do
          def show
            render text: 'profile'
          end
        end

        Rails.application.routes.draw do
          get '/profile/:id', as: :profile, controller: :user, action: :show
        end
      end

      def test_url_helpers_are_available
        serializer = Class.new(ActiveModel::Serializer) do
          attributes :url

          alias_method :url, :url # silence redefinition warning
          def url
            profile_url(id: object.object_id)
          end
        end
        profile = Profile.new

        assert_equal({ url: profile_url(id: profile.object_id) },
                     serializer.new(profile).as_json)
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
active_model_serializers-0.9.13 test/unit/active_model/serializer/url_helpers_test.rb
active_model_serializers-0.9.12 test/unit/active_model/serializer/url_helpers_test.rb