• K
    Revise setting of run_with_rails_extension. · 29f0fbd5
    Kasper Timm Hansen 提交于
    The Rails test runner supports three ways to run tests: directly, via rake, or ruby.
    
    When Running with Ruby ala `ruby -Itest test/models/post_test.rb` our test file would
    be evaluated first, requiring `test_helper` and then `active_support/testing/autorun`
    that would then require the test file (which it hadn't been before) thus reevaluating
    it. This caused exceptions if using Active Support's declarative syntax.
    
    Fix this by shifting around when we set the how we're run to closer mimick the require
    order.
    
    If we're running with `bin/rails test` the test command file is run first and we then
    set `run_with_rails_extension`, later we hit `active_support/testing/autorun` and do
    nothing — because we've been run elsewhere.
    
    If we at this point haven't set `run_with_rails_extension` we've been running with
    `ruby` this whole time and thus we set that.
    
    We should always trigger `Minitest.autorun` as it doesn't hurt to call it twice.
    
    Consolidate the two methods into a single one that better brings out the intent of
    why they're there.
    29f0fbd5
autorun.rb 182 字节