如何减少rspec测试依赖?

时间:2011-07-31 18:23:48

标签: ruby-on-rails testing rspec models shoulda

如果1次测试失败,那么其他测试就会失败。 我怎么能改变这个,以便下面的其他检查(“它的”)只有在be_valid为真时才能完成,即如何嵌套下面的“它”。我可以为所有其他的上下文创建一个不同的上下文,并且它本身有be_valid但是我如何确保它们是依赖的(在这种情况下以一种好的方式!例如它们不会运行)。

describe Gorilla do
  context "is valid" do
    subject { Factory.build(:gorilla) }
    it { should be_valid }
    it { should have_many :gorilla_memberships}
    it { should have_many(:gorilla_groups).through(:gorilla_memberships) }
    it { should have_many :gorilla_observations }
    it { should have_one(:avatar).through(:gorilla_observations) }
    it { should have_one(:noseprint).through(:gorilla_observations) }
...

1 个答案:

答案 0 :(得分:2)

没有明确支持在rspec中创建示例之间的任何关系。