我写了一个包含一些测试的一般测试文件。 我想编写一些将使用这些测试的文件,每个文件都将运行特定的测试(并非所有测试)。
测试示例:
class AccountBase
describe "TC_ACCOUNT" do
it "Fill info Fields" do
#test here
end
end
end
让我们称之为baseTests.rb。 现在我有另一个文件--infoTest.rb。 如何在infoTest中调用“填充信息字段” 感谢。
答案 0 :(得分:2)
听起来你需要Rspec的共享示例: Shared examples on Relish, or in the Rspec API docs
您的示例可能类似于:
class AccountBase
shared_examples "TC_ACCOUNT" do
it "Fill info Fields" do
#test here
end
end
end
然后您可以在infoTest.rb文件中包含共享示例:
include_examples "TC_ACCOUNT"
或:
it_behaves_like "TC_ACCOUNT"
然后可以编写共享示例以检查包含它的上下文中的元数据,或者接受包含规范传入的块的参数,以便根据它的哪个测试文件更改其行为。被纳入。