1

我有一个结构如下的测试套件:

describe ... do
  [list of dates].each do
    describe
      before(:all) do
        base_date = ...
      end
      describe ... do
        [list of times].each do
          describe ... do
            before(:all) do
              base_time = base_date + ...
              DateTime.stub!(:now).and_return(base_time)
            end
            describe ... do
              <test using records within date-time range based on base_time>
            end
            describe ... do
              <another test using records within date-time range based on base_time>
            end
          end
        end
      end
    end
  end
end

第一个测试有 DateTime(now) == base_time,但第二个测试为 DateTime(now) == 我的计算机的日期时间,表明存根不再有效。将stub!调用移动到每个describe循环中可以解决问题,但我想了解为什么它不能按书面方式工作。

4

1 回答 1

0

原因可能在于其他地方,存根与多个嵌套的描述块一起工作。也许 :all vs :each 是问题所在:before(:all)在执行所有描述块之前执行一次,而before(:each)每次在执行描述块之前执行一次。

或者它可能与存根日期时间有关,你试过了吗

DateTime.any_instance.stub(:now).and_return(base_time)
于 2012-10-18T10:33:24.660 回答