mercurial/HGTests.st
changeset 213 d5a0f178e2c4
parent 210 54a73fa50d40
child 214 175e450bb8dd
equal deleted inserted replaced
212:8ec5884fba41 213:d5a0f178e2c4
   419      UserPreferences fileBrowserClass openOn: repo directory.
   419      UserPreferences fileBrowserClass openOn: repo directory.
   420     "
   420     "
   421 
   421 
   422     "Created: / 07-12-2012 / 15:42:52 / jv"
   422     "Created: / 07-12-2012 / 15:42:52 / jv"
   423     "Modified (comment): / 10-12-2012 / 03:08:37 / Jan Vrany <jan.vrany@fit.cvut.cz>"
   423     "Modified (comment): / 10-12-2012 / 03:08:37 / Jan Vrany <jan.vrany@fit.cvut.cz>"
       
   424 !
       
   425 
       
   426 test_commit_04
       
   427     "
       
   428     Commit with specified date
       
   429     "
       
   430 
       
   431     | repo wc cs|
       
   432 
       
   433     repo := self repositoryNamed:'test_repo_01'.
       
   434     wc := repo workingCopy. 
       
   435     ( wc / 'f1.txt' ) writingFileDo:[:s | s nextPutAll:'modified from test_commit_04 2'. ].
       
   436 
       
   437     wc commit: 'test_commit_04 2' date: (Timestamp secondsSince1970:0).
       
   438 
       
   439     cs := repo @ 5.
       
   440     self assert: cs timestamp = (Timestamp secondsSince1970:0).
       
   441     self assert: cs id printString = '5:0f1497773ce6'.
       
   442 
       
   443 
       
   444     "Now, fake missing ui.username config entry"
       
   445 
       
   446 
       
   447 
       
   448 
       
   449 
       
   450 
       
   451 
       
   452 
       
   453 
       
   454 
       
   455      "
       
   456      UserPreferences fileBrowserClass openOn: repo directory.
       
   457     "
       
   458 
       
   459     "Created: / 01-02-2013 / 14:46:44 / Jan Vrany <jan.vrany@fit.cvut.cz>"
   424 ! !
   460 ! !
   425 
   461 
   426 !HGTests methodsFor:'tests - merging'!
   462 !HGTests methodsFor:'tests - merging'!
   427 
   463 
   428 test_merge_01
   464 test_merge_01