Sha256: 5006483cac5713ccd190bd88f442a4675a040124d53f23053de2e631289fca91
Contents?: true
Size: 1.56 KB
Versions: 6
Compression:
Stored size: 1.56 KB
Contents
module DummyApp class RakeTasks include Rake::DSL def initialize(gem_root:, lib_name:) task :dummy_environment do ENV['RAILS_ENV'] = 'test' require lib_name require 'spree/testing_support/dummy_app' DummyApp.setup( gem_root: gem_root, lib_name: lib_name, auto_migrate: false ) end end end end namespace :db do desc "Drops the test database" task drop: :dummy_environment do ActiveRecord::Tasks::DatabaseTasks.drop_current end desc "Creates the test database" task create: :dummy_environment do ActiveRecord::Tasks::DatabaseTasks.create_current end desc "Migrates the test database" task migrate: :dummy_environment do ActiveRecord::Migration.verbose = false # We want to simulate how migrations would be run if a user ran # railties:install:migrations and then db:migrate. # Migrations should be run one directory at a time ActiveRecord::Migrator.migrations_paths.each do |path| ActiveRecord::Migrator.migrate(path) end ActiveRecord::Base.clear_cache! end desc "Recreates the test database and re-runs all migrations" task reset: ['db:drop', 'db:create', 'db:migrate'] end desc "Open a sandboxed console in the test environment" task console: :dummy_environment do begin require 'pry' Rails.application.config.console = Pry rescue LoadError end require 'rails/commands' require 'rails/commands/console/console_command' Rails::Console.new(Rails.application, sandbox: true, environment: "test").start end
Version data entries
6 entries across 6 versions & 1 rubygems