mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Ignore excessive precisions
This commit is contained in:
parent
2dd1a037de
commit
6c5a8c2043
Notes:
git
2022-10-10 13:42:07 +09:00
3 changed files with 3 additions and 3 deletions
|
@ -17,7 +17,7 @@ describe "File.mtime" do
|
|||
|
||||
platform_is :linux, :windows do
|
||||
it "returns the modification Time of the file with microseconds" do
|
||||
supports_subseconds = Integer(`stat -c%y '#{__FILE__}'`[/\.(\d+)/, 1], 10)
|
||||
supports_subseconds = Integer(`stat -c%y '#{__FILE__}'`[/\.(\d{1,6})/, 1], 10)
|
||||
if supports_subseconds != 0
|
||||
expected_time = Time.at(Time.now.to_i + 0.123456)
|
||||
File.utime 0, expected_time, @filename
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue