Sha256: a1cefbd8dc800b352354e13cf14480dfcc570b18b661ac1f2a4bce8822cf60b3
Contents?: true
Size: 634 Bytes
Versions: 7
Compression:
Stored size: 634 Bytes
Contents
require "test_helper" class CacheKeeper::EngineTest < ActiveSupport::TestCase test "registers the ActiveJob serializer for CachedMethod" do assert_includes Rails.application.config.active_job.custom_serializers, CacheKeeper::CachedMethodSerializer end test "doesn't register the ActiveJob new_instance serializer" do assert_not_includes Rails.application.config.active_job.custom_serializers, CacheKeeper::NewInstanceSerializer end test "doesn't register the ActiveJob marshal serializer" do assert_not_includes Rails.application.config.active_job.custom_serializers, CacheKeeper::MarshalSerializer end end
Version data entries
7 entries across 7 versions & 1 rubygems