3

我正在将带有 Rspec 的测试集成到一个相当大的/已开发的应用程序中。当我运行测试时,我的一些初始化程序收到了非常奇怪的错误。

例如,我carrierwave.rb加载了一个 yaml 文件,当我运行测试命令时,我得到:

carrierwave.rb:11:in `block in <top (required)>': undefined method `[]' for nil:NilClass

这是指下面的第二行代码:

fog_config = YAML::load_file(Rails.root.join 'config/fog.yml')[Rails.env.to_s]
config.fog_directory = fog_config['directory']

如果我暂时删除carrierwave中的那行代码,omniauth也会开始抱怨:

omniauth.rb:4:in `block in <top (required)>': undefined method `symbolize_keys' for nil:NilClass (NoMethodError)

同样,另一个 yaml 文件:

  fb_config = YAML::load_file(Rails.root.join 'config/fb_app_version.yml')[Rails.env].symbolize_keys

我猜解决方案是更改我的 yaml 文件或在测试中包含一些内容,但我不确定是什么。任何想法将不胜感激,谢谢。

4

1 回答 1

4

看起来您需要在有test问题的 Yaml 文件中包含条目。

例如,您config/fog.yml可能看起来像这样:

production:
  directory: the_prod_directory
  other_keys: ...

development:
  directory: the_dev_directory
  other_keys: ...

您需要添加一个test密钥:

test:
  directory: the_test_dir
  other_keys: appropriate values
于 2013-04-15T19:16:59.200 回答