2023-04-11 11:25:29 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'rails_helper'
|
2023-10-23 19:58:29 +02:00
|
|
|
require 'rails/generators/testing/behavior'
|
2023-04-11 11:25:29 +02:00
|
|
|
require 'rails/generators/testing/assertions'
|
|
|
|
|
|
|
|
require 'generators/post_deployment_migration/post_deployment_migration_generator'
|
|
|
|
|
|
|
|
describe PostDeploymentMigrationGenerator, type: :generator do
|
2023-10-23 19:58:29 +02:00
|
|
|
include Rails::Generators::Testing::Behavior
|
2023-04-11 11:25:29 +02:00
|
|
|
include Rails::Generators::Testing::Assertions
|
|
|
|
include FileUtils
|
|
|
|
|
|
|
|
tests described_class
|
2023-12-06 23:22:25 +01:00
|
|
|
destination Rails.root.join('tmp', 'generator-test')
|
2023-04-11 11:25:29 +02:00
|
|
|
before { prepare_destination }
|
|
|
|
after { rm_rf(destination_root) }
|
|
|
|
|
|
|
|
describe 'the migration' do
|
|
|
|
it 'generates expected file' do
|
|
|
|
run_generator %w(Changes)
|
|
|
|
|
|
|
|
assert_migration('db/post_migrate/changes.rb', /disable_ddl/)
|
|
|
|
assert_migration('db/post_migrate/changes.rb', /change/)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|