14 lines
358 B
Smalltalk
14 lines
358 B
Smalltalk
Class {
|
|
#name : #TiddlerTest,
|
|
#superclass : #TestCase,
|
|
#category : #'TiddlyWiki-TiddlyWiki'
|
|
}
|
|
|
|
{ #category : #accessing }
|
|
TiddlerTest >> testTiddlerTimeFormatTrasnformation [
|
|
|
|
| tiddlerTemp |
|
|
tiddlerTemp := Tiddler new created: '20220101010101123'.
|
|
self assert: tiddlerTemp created equals: tiddlerTemp created asDateAndTimeForTiddler asTiddlerFormat
|
|
]
|