mirror of
https://github.com/discourse/discourse.git
synced 2025-01-02 13:14:34 +08:00
8 lines
221 B
Ruby
8 lines
221 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
RSpec.describe Jobs::BackfillSidebarSiteSettings do
|
||
|
it "should have a cluster concurrency of 1" do
|
||
|
expect(Jobs::BackfillSidebarSiteSettings.get_cluster_concurrency).to eq(1)
|
||
|
end
|
||
|
end
|