Skip to content

Commit

Permalink
Merge pull request #214 from DuneSt/213-Seaside-33-compatibility
Browse files Browse the repository at this point in the history
213-Seaside-33-compatibility
  • Loading branch information
jecisc committed Dec 26, 2018
2 parents 4781286 + f6394fd commit 163eb5c
Show file tree
Hide file tree
Showing 9 changed files with 25 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# [v1.3.3](https://github.com/DuneSt/MaterialDesignLite/compare/v1.3.2...v1.3.3) (2018-12-26)

* Seaside 3.3 compatibility ([86b8a7](https://github.com/DuneSt/MaterialDesignLite/commit/86b8a72676603836342b291a43bc5ce600307c88))

# [v1.3.2](https://github.com/DuneSt/MaterialDesignLite/compare/v1.3.1...v1.3.2) (2018-11-22)

* Loads another seaside group for Squeak ([0d6ffd8](https://github.com/DuneSt/MaterialDesignLite/commit/0d6ffd8fe7830ec0cc27e4a1a028f3fd626fd9de))
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
asserting
executeWithMockContext: aBlock
WACurrentRequestContext use: (WARequestContext request: WARequest new response: WABufferedResponse new) during: [ aBlock value ]
WACurrentRequestContext use: MDLMockRequestContext new during: [ aBlock value ]
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
tests
testValue
self assert: [ :html | html mdlCheckbox value: true ] generates: '<input class="mdl-checkbox__input" checked="checked" type="checkbox"/>'.
self assert: [ :html | html mdlCheckbox value: true ] generates: '<input class="mdl-checkbox__input" checked type="checkbox"/>'.
self assert: [ :html | html mdlCheckbox value: false ] generates: '<input class="mdl-checkbox__input" type="checkbox"/>'.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
tests
testValue
self assert: [ :html | html mdlIconToggle value: true ] generates: '<input class="mdl-icon-toggle__input" checked="checked" type="checkbox"/>'.
self assert: [ :html | html mdlIconToggle value: true ] generates: '<input class="mdl-icon-toggle__input" checked type="checkbox"/>'.
self assert: [ :html | html mdlIconToggle value: false ] generates: '<input class="mdl-icon-toggle__input" type="checkbox"/>'
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
tests
testBareBrush
self assert: [ :html | html mdlFooterHeadingCheckbox ] generates: '<input class="mdl-mega-footer__heading-checkbox" checked="checked" type="checkbox"/>'
self assert: [ :html | html mdlFooterHeadingCheckbox ] generates: '<input class="mdl-mega-footer__heading-checkbox" checked type="checkbox"/>'
Empty file.
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
instance creation
new
^ super request: WARequest new response: WABufferedResponse new
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
accessing-dynamic
handler
^ WARequestHandler new
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"commentStamp" : "",
"super" : "WARequestContext",
"category" : "Material-Design-Lite-Components-Tests-Abstract",
"classinstvars" : [ ],
"pools" : [ ],
"classvars" : [ ],
"instvars" : [ ],
"name" : "MDLMockRequestContext",
"type" : "normal"
}

0 comments on commit 163eb5c

Please sign in to comment.