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

file_config_spec.rb « config « static_site_editor « gitlab « lib « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 594425c2dab35a799d8eba80f6825f758be144d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Gitlab::StaticSiteEditor::Config::FileConfig do
  subject(:config) { described_class.new }

  describe '#data' do
    subject { config.data }

    it 'returns hardcoded data for now' do
      is_expected.to match(static_site_generator: 'middleman')
    end
  end
end