class Date

:nodoc:

def mock_date

Date we are behaving as
def mock_date
  mocked_time_stack_item = Timecop.top_stack_item
  mocked_time_stack_item.nil? ? nil : mocked_time_stack_item.date
end

def today_with_mock_date

Define today_with_mock_date
def today_with_mock_date
  mock_date || today_without_mock_date
end