Sha256: e2ff6b1f59bf5a0f21d99fe778bdf831303ef782a7ff37c7ccd8bdc9c0ed3fe8
Contents?: true
Size: 689 Bytes
Versions: 5
Compression:
Stored size: 689 Bytes
Contents
# frozen_string_literal: true require 'test_helper' class DeviseTokenAuth::BlacklistTest < ActiveSupport::TestCase if defined? Devise::Models::Authenticatable::UNSAFE_ATTRIBUTES_FOR_SERIALIZATION describe Devise::Models::Authenticatable::UNSAFE_ATTRIBUTES_FOR_SERIALIZATION do test 'should include :tokens' do assert Devise::Models::Authenticatable::UNSAFE_ATTRIBUTES_FOR_SERIALIZATION.include?(:tokens) end end else describe Devise::Models::Authenticatable::BLACKLIST_FOR_SERIALIZATION do test 'should include :tokens' do assert Devise::Models::Authenticatable::BLACKLIST_FOR_SERIALIZATION.include?(:tokens) end end end end
Version data entries
5 entries across 5 versions & 1 rubygems