Skip to content

Commit 12d2cf1

Browse files
committed
Issue #32: wire out the GRPackageTest>>testPackages test. The test fails in the presence of Seaside since, Seaside doesn't define the 'required methods' anymore
1 parent 2b63a90 commit 12d2cf1

File tree

1 file changed

+6
-1
lines changed
  • repository/Grease-Tests-Core.package/GRPackageTest.class/instance

1 file changed

+6
-1
lines changed
Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,15 @@
11
tests-packages
22
testPackages
33
| packages |
4+
true
5+
ifTrue: [
6+
"GRPackage appears to no longer be supported"
7+
"https://github.com/GsDevKit/Grease/issues/32"
8+
^self ].
49
packages := GRPackage grPackages.
510
self assert: packages notEmpty.
611
packages do: [ :each |
712
self assert: each name notEmpty.
813
self assert: each license notNil.
914
self deny: (each dependencies includes: nil).
10-
self assert: each url notNil ].
15+
self assert: each url notNil ].

0 commit comments

Comments
 (0)