blob: d0066f68bedc4e91c210fbb0b0d08371349f3512 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
# 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
|