forked from gcotelli/RenoirSt
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
44 additions
and
7 deletions.
There are no files selected for viewing
6 changes: 6 additions & 0 deletions
6
source/RenoirSt-Tests.package/CssConstantsTest.class/instance/testAttachmentProperties.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
Tests | ||
testAttachmentProperties | ||
|
||
self | ||
assert: CssConstants fixed equals: 'fixed'; | ||
assert: CssConstants scroll equals: 'scroll' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 12 additions & 0 deletions
12
source/RenoirSt-Tests.package/CssConstantsTest.class/instance/testBasicConstantws.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
Tests | ||
testBasicConstantws | ||
|
||
self | ||
assert: CssConstants auto equals: 'auto'; | ||
assert: CssConstants even equals: 'even'; | ||
assert: CssConstants hide equals: 'hide'; | ||
assert: CssConstants inherit equals: 'inherit'; | ||
assert: CssConstants none equals: 'none'; | ||
assert: CssConstants odd equals: 'odd'; | ||
assert: CssConstants show equals: 'show'; | ||
assert: CssConstants vertical equals: 'vertical' |
17 changes: 15 additions & 2 deletions
17
source/RenoirSt-Tests.package/CssConstantsTest.class/instance/testBorderProperties.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,19 @@ | ||
Tests | ||
testBorderProperties | ||
|
||
self | ||
assert: CssConstants fill equals: 'fill'; | ||
assert: CssConstants stretch equals: 'stretch' | ||
assert: CssConstants stretch equals: 'stretch'; | ||
assert: CssConstants collapse equals: 'collapse'; | ||
assert: CssConstants dashed equals: 'dashed'; | ||
assert: CssConstants dotted equals: 'dotted'; | ||
assert: CssConstants double equals: 'double'; | ||
assert: CssConstants groove equals: 'groove'; | ||
assert: CssConstants inset equals: 'inset'; | ||
assert: CssConstants medium equals: 'medium'; | ||
assert: CssConstants outset equals: 'outset'; | ||
assert: CssConstants ridge equals: 'ridge'; | ||
assert: CssConstants separate equals: 'separate'; | ||
assert: CssConstants solid equals: 'solid'; | ||
assert: CssConstants thick equals: 'thick'; | ||
assert: CssConstants thin equals: 'thin' |
8 changes: 5 additions & 3 deletions
8
source/RenoirSt-Tests.package/CssConstantsTest.class/methodProperties.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,11 @@ | ||
{ | ||
"instance" : { | ||
"testBackgroundProperties" : "GabrielOmarCotelli 2/8/2017 19:16", | ||
"testBorderProperties" : "GabrielOmarCotelli 2/8/2017 19:21", | ||
"testTextConstants" : "GabrielOmarCotelli 4/12/2014 15:55", | ||
"testGradientConstants" : "GabrielOmarCotelli 4/14/2014 11:03", | ||
"testBackgroundProperties" : "GabrielOmarCotelli 4/8/2014 23:04", | ||
"testBorderProperties" : "GabrielOmarCotelli 4/8/2014 23:24", | ||
"testTextConstants" : "GabrielOmarCotelli 4/12/2014 15:55" | ||
"testAttachmentProperties" : "GabrielOmarCotelli 2/8/2017 19:11", | ||
"testBasicConstantws" : "GabrielOmarCotelli 2/8/2017 19:10" | ||
}, | ||
"class" : { } | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters