Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
958 views
in Technique[技术] by (71.8m points)

change rails environment in the mid of testing

How to change the environment variable of rails in testing

question from:https://stackoverflow.com/questions/4266497/change-rails-environment-in-the-mid-of-testing

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

You could do

Rails.stub(env: ActiveSupport::StringInquirer.new("production"))

Then Rails.env, Rails.development? etc will work as expected.

With RSpec 3 or later you may want to use the new "zero monkeypatching" syntax (as mentioned by @AnkitG in another answer) to avoid deprecation warnings:

allow(Rails).to receive(:env).and_return(ActiveSupport::StringInquirer.new("production"))

I usually define a stub_env method in a spec helper so I don't have to put all that stuff inline in my tests.

An option to consider (as suggested in a comment here) is to instead rely on some more targeted configuration that you can set in your environment files and change in tests.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share

2.1m questions

2.1m answers

62 comments

56.6k users

...