gpt4 book ai didi

ruby-on-rails-3 - 如何使用 rspec + capybara 重用不同功能中的场景

转载 作者:行者123 更新时间:2023-12-03 00:46:43 26 4
gpt4 key购买 nike

假设我有一些场景想要在不同的上下文或“功能”下进行测试。

例如,我有一些场景涉及用户访问某些页面并期望某些 ajax 结果。

但是,在不同的条件或“功能”下,我需要执行不同的“后台”任务来更改应用程序的状态。

在这种情况下,我需要一遍又一遍地运行相同的场景,以确保一切都能适应应用程序状态的不同更改。

有没有办法在某处定义场景,然后重用它们?

最佳答案

您可以使用 shared examples 创建在多个功能中使用的可重复使用的场景。 .

下面是取自 relishapp 页面的基本示例。正如您所看到的,在多个功能中使用相同的场景来测试不同的类 - 即运行了 6 个示例。

require 'rspec/autorun'
require "set"

shared_examples "a collection" do
let(:collection) { described_class.new([7, 2, 4]) }

context "initialized with 3 items" do
it "says it has three items" do
collection.size.should eq(3)
end
end

describe "#include?" do
context "with an an item that is in the collection" do
it "returns true" do
collection.include?(7).should be_true
end
end

context "with an an item that is not in the collection" do
it "returns false" do
collection.include?(9).should be_false
end
end
end
end

describe Array do
it_behaves_like "a collection"
end

describe Set do
it_behaves_like "a collection"
end

relishapp 页面上有几个示例,包括使用参数运行共享示例(复制如下)。我猜测(因为我不知道您的确切测试)您应该能够在执行这组示例之前使用参数来设置不同的条件。

require 'rspec/autorun'

shared_examples "a measurable object" do |measurement, measurement_methods|
measurement_methods.each do |measurement_method|
it "should return #{measurement} from ##{measurement_method}" do
subject.send(measurement_method).should == measurement
end
end
end

describe Array, "with 3 items" do
subject { [1, 2, 3] }
it_should_behave_like "a measurable object", 3, [:size, :length]
end

describe String, "of 6 characters" do
subject { "FooBar" }
it_should_behave_like "a measurable object", 6, [:size, :length]
end

关于ruby-on-rails-3 - 如何使用 rspec + capybara 重用不同功能中的场景,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18709397/

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