Skip to content

Commit

Permalink
Issue #32: wire out the GRPackageTest>>testPackages test. The test fa…
Browse files Browse the repository at this point in the history
…ils in the presence of Seaside since, Seaside doesn't define the 'required methods' anymore
  • Loading branch information
dalehenrich committed Aug 12, 2024
1 parent 2b63a90 commit 12d2cf1
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,10 +1,15 @@
tests-packages
testPackages
| packages |
true
ifTrue: [
"GRPackage appears to no longer be supported"
"https://github.com/GsDevKit/Grease/issues/32"
^self ].
packages := GRPackage grPackages.
self assert: packages notEmpty.
packages do: [ :each |
self assert: each name notEmpty.
self assert: each license notNil.
self deny: (each dependencies includes: nil).
self assert: each url notNil ].
self assert: each url notNil ].

0 comments on commit 12d2cf1

Please sign in to comment.