Skip to content

Commit 9b7608e

Browse files
authored
Merge pull request #142 from ba-st/sunit
Improve SUnit related groups
2 parents 4378b9f + f582b48 commit 9b7608e

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

Diff for: source/BaselineOfWillow/BaselineOfWillow.class.st

+3-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ BaselineOfWillow >> baseline: spec [
1818
baselineWillow: spec.
1919
spec
2020
group: 'CI' with: 'Tests';
21-
group: 'Dependent-SUnit-Extensions' with: 'Boardwalk-SUnit';
2221
group: 'Tools' with: 'Boardwalk-Tools';
2322
group: 'Development' with: #('Tests' 'Tools')
2423
]
@@ -31,7 +30,9 @@ BaselineOfWillow >> baselineWillow: spec [
3130
package: 'Willow'
3231
with: [ spec requires: #( 'Boardwalk-Deployment' 'Seaside3-JQuery' 'RenoirSt-Deployment') ];
3332
group: 'Deployment' with: 'Willow';
34-
package: 'Willow-Tests' with: [ spec requires: #('Boardwalk-SUnit' 'Willow') ];
33+
package: 'Willow-SUnit' with: [ spec requires: #('Boardwalk-SUnit' 'Willow') ];
34+
group: 'Dependent-SUnit-Extensions' with: 'Willow-SUnit';
35+
package: 'Willow-Tests' with: [ spec requires: 'Willow-SUnit' ];
3536
group: 'Tests' with: 'Willow-Tests'
3637
]
3738

Diff for: source/Willow-Tests/WARenderingTest.extension.st renamed to source/Willow-SUnit/WARenderingTest.extension.st

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Extension { #name : #WARenderingTest }
22

3-
{ #category : #'*Willow-Tests' }
3+
{ #category : #'*Willow-SUnit' }
44
WARenderingTest >> apply: aWebInteractionObject toComponentDefinedBy: aComponentProvider [
55

66
^ self
@@ -9,7 +9,7 @@ WARenderingTest >> apply: aWebInteractionObject toComponentDefinedBy: aComponent
99
afterApplyingDo: [ :canvas :component | ]
1010
]
1111

12-
{ #category : #'*Willow-Tests' }
12+
{ #category : #'*Willow-SUnit' }
1313
WARenderingTest >> apply: aWebInteractionObject toComponentDefinedBy: aComponentProvider afterApplyingDo: aPostAction [
1414

1515
^ self
@@ -21,7 +21,7 @@ WARenderingTest >> apply: aWebInteractionObject toComponentDefinedBy: aComponent
2121
aPostAction value: canvas value: component ]
2222
]
2323

24-
{ #category : #'*Willow-Tests' }
24+
{ #category : #'*Willow-SUnit' }
2525
WARenderingTest >> createHandlers [
2626

2727
^ Array with: WARequestHandler new

Diff for: source/Willow-SUnit/package.st

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Package { #name : #'Willow-SUnit' }

0 commit comments

Comments
 (0)