Sha256: 4022c9e65ad931d5d7d9e66e13401d170d9afb681b4783b0209a22359f220c24
Contents?: true
Size: 1017 Bytes
Versions: 1
Compression:
Stored size: 1017 Bytes
Contents
# frozen_string_literal: true require "cases/helper" module ActiveRecord class Migration class PendingMigrationsTest < ActiveRecord::TestCase def setup super @connection = Minitest::Mock.new @app = Minitest::Mock.new conn = @connection @pending = Class.new(CheckPending) { define_method(:connection) { conn } }.new(@app) @pending.instance_variable_set :@last_check, -1 # Force checking end def teardown assert @connection.verify assert @app.verify super end def test_errors_if_pending ActiveRecord::Migrator.stub :needs_migration?, true do assert_raise ActiveRecord::PendingMigrationError do @pending.call(nil) end end end def test_checks_if_supported @app.expect :call, nil, [:foo] ActiveRecord::Migrator.stub :needs_migration?, false do @pending.call(:foo) end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
ruby-on-quails-0.1.0 | activerecord/test/cases/migration/pending_migrations_test.rb |