13 lines
312 B
Ruby
13 lines
312 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'spec_helper'
|
|
|
|
RSpec.describe TrendingProjectsWorker, feature_category: :source_code_management do
|
|
describe '#perform' do
|
|
it 'refreshes the trending projects' do
|
|
expect(TrendingProject).to receive(:refresh!)
|
|
|
|
described_class.new.perform
|
|
end
|
|
end
|
|
end
|