我有这个 config/initializer.rb,它可以让我加载一个 yaml /config/application.yaml 并执行类似 APP_CONFIG["myvar"] 的操作,我怎样才能为我的 SPECS 启用它呢?
我的目标是做类似的事情:
require "spec_helper"
describe BetaController do
describe "routing" do
if APP_CONFIG["viral"] and APP_CONFIG["beta"]
it "routes to #index do" do
get("/").should route_to("home#index")
end
end
end
end