我无法弄清楚如何在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
解决方法
考虑使用带有实例变量的全局前挂钩:
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