This repository has been archived on 2020-02-24. You can view files and clone it, but cannot push or open issues or pull requests.
plsql-spec-example/spec/helpers/time_helpers.rb

6 lines
144 B
Ruby
Raw Permalink Normal View History

2020-01-16 11:11:30 +00:00
# return current date with time 00:00:00
def Time.today
t = Time.now
Time.local(t.year, t.month, t.day)
end unless Time.respond_to?(:today)