Skip to content

Commit

Permalink
Formatting and categorization
Browse files Browse the repository at this point in the history
  • Loading branch information
astares committed Jun 3, 2023
1 parent 7f9b806 commit 350d8b3
Show file tree
Hide file tree
Showing 4 changed files with 354 additions and 236 deletions.
9 changes: 6 additions & 3 deletions src/Glorp-Unit-Tests/DescriptorSystem.extension.st
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,20 @@ Extension { #name : #DescriptorSystem }
{ #category : #'*Glorp-Unit-Tests' }
DescriptorSystem class >> createTables [
"Create the tables for this descriptor system. This will fail if the tables already exist. Use recreateTables for that."
^self createTablesFor: GlorpDatabaseLoginResource current login.

^ self createTablesFor: GlorpDatabaseLoginResource current login
]

{ #category : #'*Glorp-Unit-Tests' }
DescriptorSystem class >> dropTables [
"Drop and re-create the tables for this descriptor system."
^self dropTablesFor: GlorpDatabaseLoginResource current login.

^ self dropTablesFor: GlorpDatabaseLoginResource current login
]

{ #category : #'*Glorp-Unit-Tests' }
DescriptorSystem class >> recreateTables [
"Drop and re-create the tables for this descriptor system."
^self recreateTablesFor: GlorpDatabaseLoginResource current login.

^ self recreateTablesFor: GlorpDatabaseLoginResource current login
]
Loading

0 comments on commit 350d8b3

Please sign in to comment.