Sha256: cb21200403cbaf10a669bebf27a32167d67a79c56c31753935e00fc5ca58a5f8

Contents?: true

Size: 468 Bytes

Versions: 1

Compression:

Stored size: 468 Bytes

Contents

require 'spec_helper'

describe ResqueHelpers do
  describe ResqueHelpers::Worker do
    it 'should find worker by name' do
      expect(described_class.find_by_queue_name('test')).to match_array([])
    end

    it 'should find worker by server name' do
      expect(described_class.find_by_server_name('test')).to match_array([])
    end

    it 'should find worker by name' do
      expect(described_class.find_by_name('test')).to match_array([])
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
resque_helpers-0.0.1 spec/resque_helpers_spec.rb