yaml /config/application.yaml をロードして APP_CONFIG["myvar"] のようなことを実行できるようにする config/initializer.rb がありますが、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