Welcome to mirror list, hosted at ThFree Co, Russian Federation.

plan_config_spec.rb « cycle_analytics « gitlab « lib « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 92698defa5da20d489ddd4e0c1044c4f8f4df268 (plain)
1
2
3
4
5
6
7
8
9
10
require 'spec_helper'
require 'lib/gitlab/cycle_analytics/shared_config_spec'

describe Gitlab::CycleAnalytics::PlanConfig do
  it_behaves_like 'default query config'
   
  it 'has the default order' do
    expect(described_class.order).to eq(described_class.start_time_attrs)
  end
end