标签: rspec
我有一长串相互引用的let变量。最后,我剩下一个数组,需要为该数组的每个元素生成一个示例。
let
问题在于,无法在let或it块之外访问before变量。
it
before
let(:my_array) { other_let_variable.where(x: 1) } my_array.each do |element| it "does #{element}" do ... end end
有什么办法解决这个问题?