Jan. 27, 2012
10:33 p.m.
While using FileSystem I found that the memory storage doesn't save the modification date. Here is an example of what is failing: fs := FSFilesystem memory. file := (fs/'hello') withExtension: 'txt'. file fileStreamDo: [ :stream | stream nextPutAll: 'foo' ]. file entry modification ---> 1901-01-01T00:00:00-03:00 This is a little awkward, because I want to use the memory storage to write tests... Should I open a bug entry? isn't it a bug? Thank you in advance! Deby