我无法弄清楚如何在rspec测试中使用简单的全局变量。这看起来像是一个微不足道的功能,但经过多次傻瓜之后,我还没能找到解决方案。
我想要一个可以在主要规范文件和辅助规范文件中的函数中访问/更改的变量。
这是我到目前为止所做的:
require_relative 'spec_helper.rb'
require_relative 'helpers.rb'
let(:concept0) { '' }
describe 'ICE Testing' do
describe 'step1' do
it "Populates suggestions correctly" do
concept0 = "tg"
selectConcept() #in helper file. Sets concept0 to "First Concept"
puts concept0 #echos tg?? Should echo "First Concept"
end
end
#helpers.rb
def selectConcept
concept0 = "First Concept"
end
有人可以指出我缺少的东西,或者使用“let”是完全错误的方法吗?
答案 0 :(得分:9)
考虑使用带有实例变量的全局前挂钩:http://www.rubydoc.info/github/rspec/rspec-core/RSpec/Core/Configuration
在spec_helper.rb文件中:
RSpec.configure do |config|
config.before(:example) { @concept0 = 'value' }
end
然后在您的示例(my_example_spec.rb)中设置@ concept0:
RSpec.describe MyExample do
it { expect(@concept0).to eql('value') } # This code will pass
end
答案 1 :(得分:5)
事实证明,最简单的方法是使用$符号来表示全局变量。
答案 2 :(得分:0)
这是一个老话题,但是我今天有这个问题。我只需要定义一个长字符串就可以将多个文件中的命令存根为:
# in each spec file that needed it
let(:date_check) do
<<~PWSH.strip
# lots of powershell code
PWSH
end
# in any context in that file (or a shared context)
before(:each) do
stub_command(date_check).and_return(false)
end
搜索,堆栈溢出等都落在此:请注意,变量的用法完全没有改变! (假设所有规格为require 'spec_helper'
)
# in spec_helper.rb
def date_check
<<~PWSH.strip
# lots of powershell code
PWSH
end
# in any context in any spec file
before(:each) do
stub_command(date_check).and_return(false)
end