Sha256: efb1ac3c5517560ce287d5e7d004f6350e882bfc60074f409d06e2b64366b8a2
Contents?: true
Size: 371 Bytes
Versions: 8
Compression:
Stored size: 371 Bytes
Contents
# frozen_string_literal: false FactoryBot.define do factory :dictionary_file_loader_service, class: 'LittleWeasel::Services::DictionaryFileLoaderService' do dictionary_key { create(:dictionary_key) } dictionary_cache { {} } skip_create initialize_with do new(dictionary_key: dictionary_key, dictionary_cache: dictionary_cache) end end end
Version data entries
8 entries across 8 versions & 1 rubygems