Preparing tests previous scaffolding.

This commit is contained in:
Offray Vladimir Luna Cárdenas 2021-07-18 19:14:39 -05:00
parent 17cd2882ba
commit 2f6a9eb37f
2 changed files with 13 additions and 0 deletions

View File

@ -0,0 +1,8 @@
Extension { #name : #LeDatabase }
{ #category : #'*LepiterPlugins' }
LeDatabase >> addTestPage [
| page |
page := LePage new title: 'Test Page ',DateAndTime today asString.
^ self addPage: page.
]

View File

@ -0,0 +1,5 @@
Class {
#name : #LeSnippetTest,
#superclass : #TestCase,
#category : #LepiterPlugins
}