| 12 | | FileUtils.touch 'spec/test_dirs/indexed/basic/basic.pdf', :mtime => Time.local(1982,2,16,20,42) |
|---|
| 13 | | FileUtils.touch 'spec/test_dirs/indexed/yet_another_dir/office2003-word-template.dot', :mtime => Time.local(1983,12,9,9) |
|---|
| 14 | | FileUtils.touch 'spec/test_dirs/indexed/others/placeholder.txt', :mtime => Time.local(1990) |
|---|
| 15 | | |
|---|
| | 15 | File.utime(0, once_upon_a_time, 'spec/test_dirs/indexed/basic/basic.pdf') |
|---|
| | 16 | File.utime(0, a_bit_later, 'spec/test_dirs/indexed/yet_another_dir/office2003-word-template.dot') |
|---|
| | 17 | File.utime(0, nineties, 'spec/test_dirs/indexed/others/placeholder.txt') |
|---|