debian-mirror-gitlab/spec/migrations/generate_lets_encrypt_private_key_spec.rb
2021-09-04 02:52:04 +05:30

14 lines
261 B
Ruby

# 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