gpt4 book ai didi

ruby-on-rails - 之前(:each) vs just before

转载 作者:行者123 更新时间:2023-12-04 02:12:35 24 4
gpt4 key购买 nike

我是 ruby​​ on rails 的新手。并玩弄测试

有没有区别

before(:each) do 
#some test code
end


before do
#some test code
end

最佳答案

before方法接受 scope默认为 :each 的参数.当您省略它时,暗示您的意思是 :each ,所以你的两个例子做同样的事情。

这是来自 RSpec RDoc 的有用消息,Module: RSpec::Core::Hooks#before :

Parameters:

  • scope (Symbol) — :each, :all, or :suite (defaults to :each)
  • conditions (Hash) — constrains this hook to examples matching these conditions e.g. before(:each, :ui => true) { ... } will only run with examples or groups declared with :ui => true.

关于ruby-on-rails - 之前(:each) vs just before,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17584161/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com