Sha256: 5007868534d654699f4597cf81304a7633acf5a885e992dd850747ba37e997f1
Contents?: true
Size: 566 Bytes
Versions: 54
Compression:
Stored size: 566 Bytes
Contents
# => require 'spec_helper' # => # => describe AddressWorker, sidekiq: :fake do # => # => let(:address) { create :address } # => # => it 'should call the ShiftplanMailer published_shiftplan_mail mailer' do # => # => # => Location::Address.should_receive(:build_association_translations).exactly(1).times.and_return( true ) # => # => # => # => AddressWorker.perform_async(address.id) # => # => expect { # => AddressWorker.perform_async(1) # => }.to change(AddressWorker.jobs, :size).by(1) # => # => end # => # => end
Version data entries
54 entries across 54 versions & 1 rubygems