Skip to content

Commit

Permalink
rename tests including "lane" to "column"
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthias Cram committed Aug 1, 2022
1 parent e6765bc commit 3e7a00c
Show file tree
Hide file tree
Showing 47 changed files with 71 additions and 101 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ buildColumnAreaChildren

| children |

children := ((self buildColumnsSpecWith: self usedBuilder)
children := ((self buildColumnSpecWith: self usedBuilder)
collect: [:spec | self usedBuilder build: spec]) asOrderedCollection.
children
add: ((self usedBuilder build: (self buildAddColumnButtonPanelSpecWith: self usedBuilder)) color: Color lightGray).
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
toolbuilder
buildColumnsSpecWith: aBuilder
buildColumnSpecWith: aBuilder

^ self columns collect: [:each | self buildColumnSpecWith: aBuilder and: each].
8 changes: 0 additions & 8 deletions Squello-Core.package/SPBBoard.class/instance/showColumns.st

This file was deleted.

5 changes: 2 additions & 3 deletions Squello-Core.package/SPBBoard.class/methodProperties.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,16 @@
"buildAddColumnButtonPanelSpecWith:" : "tk 7/30/2022 21:38",
"buildAddColumnButtonSpecWith:" : "tk 7/30/2022 21:38",
"buildAndOpen" : "mcr 8/1/2022 00:47",
"buildColumnAreaChildren" : "tk 7/30/2022 21:48",
"buildColumnAreaChildren" : "mcr 8/1/2022 02:18",
"buildColumnAreaSpecWith:" : "tk 7/30/2022 21:40",
"buildColumnAreaSpecWith:width:" : "tk 7/30/2022 21:40",
"buildColumnBodySpecWith:and:" : "tk 7/30/2022 21:45",
"buildColumnHeaderAddCardButtonSpecWith:and:" : "tk 7/30/2022 21:45",
"buildColumnHeaderMoveColumnButtonSpecWith:and:" : "tk 7/30/2022 21:58",
"buildColumnHeaderSpecWith:and:" : "tk 7/30/2022 21:47",
"buildColumnHeaderTitleSpecWith:and:" : "tk 7/30/2022 21:47",
"buildColumnSpecWith:" : "mcr 8/1/2022 02:18",
"buildColumnSpecWith:and:" : "tk 7/30/2022 21:48",
"buildColumnsSpecWith:" : "tk 7/30/2022 21:48",
"buildSidebarAssigneeListSpecWith:" : "mcr 8/1/2022 00:49",
"buildSidebarAssigneePanelSpecWith:" : "mcr 8/1/2022 00:49",
"buildSidebarDescriptionSpecWith:" : "mcr 8/1/2022 00:49",
Expand All @@ -47,7 +47,6 @@
"rerenderColumns" : "lo 7/31/2022 16:42",
"resizeColumnArea" : "tk 7/30/2022 22:09",
"setupColumns" : "mcr 8/1/2022 01:26",
"showColumns" : "lo 7/31/2022 16:42",
"sidebar" : "mcr 8/1/2022 00:44",
"sidebar:" : "mcr 8/1/2022 00:44",
"update:with:" : "mcr 8/1/2022 01:27",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
as yet unclassified
testBuildAddLaneButtonPanelSpecWith
testBuildAddColumnButtonPanelSpecWith

| spec child |
spec := board buildAddColumnButtonPanelSpecWith: board usedBuilder.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
as yet unclassified
testBuildAddLaneButtonSpecWith
testBuildAddColumnButtonSpecWith

| spec |
spec := board buildAddColumnButtonSpecWith: board usedBuilder.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
as yet unclassified
testBuildLaneAreaSpecWith
testBuildColumnAreaSpecWith

| spec |

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
as yet unclassified
testBuildLaneBodySpecWithAnd
testBuildColumnBodySpecWithAnd

| column spec pasteup |
column := SPBColumn new
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
as yet unclassified
testBuildLaneHeaderAddCardButtonSpecWith
testBuildColumnHeaderAddCardButtonSpecWith

| column spec |
column := SPBColumn new
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
as yet unclassified
testBuildLaneHeaderSpecWith
testBuildColumnHeaderSpecWith

| column spec title button |
column := SPBColumn new
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
as yet unclassified
testBuildLaneHeaderTitleSpecWith
testBuildColumnHeaderTitleSpecWith

| column spec |
column := SPBColumn new
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
as yet unclassified
testBuildLanesSpecWith
testBuildColumnSpecWith

| specs column1 column2 |
column1 := SPBColumn new
Expand All @@ -10,7 +10,7 @@ testBuildLanesSpecWith
title: 'column2'.
board columns: {column1 . column2} asOrderedCollection.

specs := board buildColumnsSpecWith: board usedBuilder.
specs := board buildColumnSpecWith: board usedBuilder.

self assert: true equals: (specs isKindOf: OrderedCollection).
specs do: [:each | self assert: true equals: (self isColumn: each)].
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
as yet unclassified
testBuildLaneSpecWithAnd
testBuildColumnSpecWithAnd

| spec column |
column := SPBColumn new
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
as yet unclassified
testCreateLanes
testCreateColumns

| columns |
board createColumns.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
as yet unclassified
testShowLanesButDontRebuildCards
testRerenderColumns

| builder columns |
builder := SPBMockBuilder new.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
as yet unclassified
testUpdateLanes
testSetupColumns

| builder column pasteup |
builder := SPBMockBuilder new.
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
as yet unclassified
testUpdateLanesWithCards
testUpdateColumns

| builder columns column1 column2 pasteup1 pasteup2 columnArea |
builder := SPBMockBuilder new.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
as yet unclassified
testUpdateLanesAndSidebar
testUpdateColumnsAndSidebar

| usedBuilder |
usedBuilder := SPBMorphicToolBuilder new.
Expand Down
29 changes: 14 additions & 15 deletions Squello-Tests.package/SPBBoardTests.class/methodProperties.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@
"isColumn:" : "tk 7/30/2022 23:09",
"setUp" : "mcr 8/1/2022 01:57",
"tearDown" : "NTK 5/30/2022 15:16",
"testBuildAddLaneButtonPanelSpecWith" : "tk 7/30/2022 21:37",
"testBuildAddLaneButtonSpecWith" : "tk 7/30/2022 21:38",
"testBuildLaneAreaSpecWith" : "tk 7/30/2022 21:39",
"testBuildLaneBodySpecWithAnd" : "tk 7/30/2022 23:20",
"testBuildLaneHeaderAddCardButtonSpecWith" : "tk 7/30/2022 23:12",
"testBuildLaneHeaderSpecWith" : "tk 7/30/2022 23:11",
"testBuildLaneHeaderTitleSpecWith" : "tk 7/30/2022 23:20",
"testBuildLaneSpecWithAnd" : "tk 7/30/2022 23:13",
"testBuildLanesSpecWith" : "tk 7/30/2022 23:19",
"testBuildAddColumnButtonPanelSpecWith" : "mcr 8/1/2022 02:18",
"testBuildAddColumnButtonSpecWith" : "mcr 8/1/2022 02:18",
"testBuildColumnAreaSpecWith" : "mcr 8/1/2022 02:16",
"testBuildColumnBodySpecWithAnd" : "mcr 8/1/2022 02:16",
"testBuildColumnHeaderAddCardButtonSpecWith" : "mcr 8/1/2022 02:17",
"testBuildColumnHeaderSpecWith" : "mcr 8/1/2022 02:17",
"testBuildColumnHeaderTitleSpecWith" : "mcr 8/1/2022 02:17",
"testBuildColumnSpecWith" : "mcr 8/1/2022 02:18",
"testBuildColumnSpecWithAnd" : "mcr 8/1/2022 02:16",
"testBuildSidebarAssigneeListSpecWith" : "mcr 8/1/2022 01:54",
"testBuildSidebarAssigneePanelSpecWith" : "mcr 8/1/2022 01:54",
"testBuildSidebarDescriptionSpecWith" : "mcr 8/1/2022 01:54",
Expand All @@ -28,14 +28,13 @@
"testBuildSidebarWith" : "mcr 6/18/2022 13:34",
"testBuildWith" : "mcr 8/1/2022 01:57",
"testChangeActiveCardTo" : "mcr 8/1/2022 01:58",
"testCreateLanes" : "tk 7/30/2022 21:48",
"testCreateColumns" : "mcr 8/1/2022 02:15",
"testLastProject" : "jh 6/21/2022 11:12",
"testProvider" : "jh 7/29/2022 11:38",
"testShowLanes" : "mcr 8/1/2022 01:28",
"testShowLanesButDontRebuildCards" : "tk 7/30/2022 23:17",
"testUpdateLanes" : "mcr 8/1/2022 01:26",
"testUpdateLanesAndSidebar" : "tk 7/30/2022 23:16",
"testUpdateLanesWithCards" : "mcr 8/1/2022 01:27",
"testRerenderColumns" : "mcr 8/1/2022 02:14",
"testSetupColumns" : "mcr 8/1/2022 02:12",
"testUpdateColumns" : "mcr 8/1/2022 02:14",
"testUpdateColumnsAndSidebar" : "mcr 8/1/2022 02:15",
"testUsedBuilder" : "jh 6/3/2022 20:32",
"testWindow" : "jh 6/3/2022 20:33",
"update:" : "lo 6/18/2022 12:16" } }
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
tests
testAddToNewLaneAsFirst
testAddToNewColumnAsFirst

| newCard card1 card2 |
newCard := SPBCard new
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
tests
testAddToNewLaneAsLast
testAddToNewColumnAsLast

| newCard card1 card2 |
newCard := SPBCard new
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
tests
testAddToNewLaneEmptyLane
testAddToNewColumnEmptyLane

| newCard |
newCard := SPBCard new
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
tests
testAddToNewLaneInMiddle
testAddToNewColumnInMiddle

| newCard card1 card2 |
newCard := SPBCard new
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
tests
testChangeIndexOfLane
testChangeIndexOfColumn

| board usedBuilder otherColumn |
otherColumn := SPBColumn new id: 1337.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
tests
testMoveLane
testMoveColumn

| ghosts |
ghosts := ActiveHand submorphs select: [:each | each class = SPBGhostLane].
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
tests
testRemoveFirstFromOldLane
testRemoveFirstFromOldColumn

| card1 card2 card3 |
card1 := SPBCard new
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
tests
testRemoveLastFromOldLane
testRemoveLastFromOldColumn

| card1 card2 card3 |
card1 := SPBCard new
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
tests
testRemoveMiddleFromOldLane
testRemoveMiddleFromOldColumn

| card1 card2 card3 |
card1 := SPBCard new
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
tests
testRemoveOnlyFromOldLane
testRemoveOnlyFromOldColumn

| card1 |
card1 := SPBCard new
Expand Down
25 changes: 25 additions & 0 deletions Squello-Tests.package/SPBColumnTests.class/methodProperties.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"class" : {
},
"instance" : {
"setUp" : "tk 7/30/2022 23:35",
"tearDown" : "tk 7/30/2022 23:34",
"testAddToNewColumnAsFirst" : "mcr 8/1/2022 02:09",
"testAddToNewColumnAsLast" : "mcr 8/1/2022 02:09",
"testAddToNewColumnEmptyLane" : "mcr 8/1/2022 02:09",
"testAddToNewColumnInMiddle" : "mcr 8/1/2022 02:09",
"testBoard" : "tk 7/30/2022 23:34",
"testCardDroppedEvent" : "tk 7/30/2022 23:35",
"testCards" : "tk 7/30/2022 23:34",
"testChangeIndexOfColumn" : "mcr 8/1/2022 02:10",
"testId" : "tk 7/30/2022 23:34",
"testMoveColumn" : "mcr 8/1/2022 02:10",
"testNewFrom" : "tk 7/30/2022 23:36",
"testProvider" : "tk 7/30/2022 23:34",
"testRemoveFirstFromOldColumn" : "mcr 8/1/2022 02:10",
"testRemoveLastFromOldColumn" : "mcr 8/1/2022 02:10",
"testRemoveMiddleFromOldColumn" : "mcr 8/1/2022 02:10",
"testRemoveOnlyFromOldColumn" : "mcr 8/1/2022 02:10",
"testTitle" : "tk 7/30/2022 23:34",
"testUpdateTitle" : "tk 7/30/2022 23:34",
"update:" : "lo 5/24/2022 23:18" } }
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"instvars" : [
"observed",
"column" ],
"name" : "SPBLaneTests",
"name" : "SPBColumnTests",
"pools" : [
],
"super" : "TestCase",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
as yet unclassified
testLane
testColumn

| column |
column := SPBColumn new.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@
"instance" : {
"setUp" : "tk 7/30/2022 23:46",
"tearDown" : "NTK 7/30/2022 13:19",
"testLane" : "tk 7/30/2022 23:33",
"testColumn" : "mcr 8/1/2022 02:19",
"testMouseEnterDragging" : "tk 7/30/2022 23:33",
"testMouseLeaveDragging" : "tk 7/30/2022 23:34" } }
25 changes: 0 additions & 25 deletions Squello-Tests.package/SPBLaneTests.class/methodProperties.json

This file was deleted.

0 comments on commit 3e7a00c

Please sign in to comment.