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

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

require 'spec_helper'
require_migration!

RSpec.describe GenerateLetsEncryptPrivateKey do
  describe '#up' do
    it 'does not fail' do
      expect do
        described_class.new.up
      end.not_to raise_error
    end
  end
end