it "should be stale if tonce is smaller than last seen" do subject.should be_fresh subject.expects(:tonce).returns(time_to_milliseconds(1.second.ago)) subject.stubs(:tonce).returns(time_to_milliseconds(1.second.ago)) subject.should_not be_fresh end0...