我如何告诉黄瓜在哪里搜索文件?
How do I tell cucumber where to search for files?
在我的黄瓜步骤定义中,我想使用 "#{Rails.root}/config/initializers/constants.rb"
中定义的常量和 #{Rails.root}/spec/support/factories"
中定义的 FactoryGirl
工厂。我如何配置黄瓜在那些地方看?
初始化程序中的文件会在 Rails 应用程序启动时自动加载。 same applies 到工厂,只要将 factory_girl_rails
作为 cucumber 使用的环境的依赖添加到 运行 场景(一般 cucumber
)。
在我的黄瓜步骤定义中,我想使用 "#{Rails.root}/config/initializers/constants.rb"
中定义的常量和 #{Rails.root}/spec/support/factories"
中定义的 FactoryGirl
工厂。我如何配置黄瓜在那些地方看?
初始化程序中的文件会在 Rails 应用程序启动时自动加载。 same applies 到工厂,只要将 factory_girl_rails
作为 cucumber 使用的环境的依赖添加到 运行 场景(一般 cucumber
)。