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

15 lines
332 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'
require Rails.root.join('db', 'migrate', '20190524062810_generate_lets_encrypt_private_key.rb')
2020-04-08 14:13:33 +05:30
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