debian-mirror-gitlab/spec/migrations/generate_lets_encrypt_private_key_spec.rb

15 lines
261 B
Ruby
Raw Normal View History

2019-12-26 22:10:19 +05:30
# frozen_string_literal: true
2019-09-04 21:01:54 +05:30
require 'spec_helper'
2021-09-04 01:27:46 +05:30
require_migration!
2019-09-04 21:01:54 +05:30
2020-07-28 23:09:34 +05:30
RSpec.describe GenerateLetsEncryptPrivateKey do
2019-09-04 21:01:54 +05:30
describe '#up' do
it 'does not fail' do
expect do
described_class.new.up
end.not_to raise_error
end
end
end