Skip to content

Commit

Permalink
rewrote tests for ci
Browse files Browse the repository at this point in the history
  • Loading branch information
FePrHPI committed Jul 11, 2024
1 parent fe66e48 commit 6a1badb
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ fetchCardsIntoColumns: anOrderedCollection

|cardsJson columnDict |
cardsJson := (self api queryCardsfromProject: self projectId) asOrderedCollection.
columnDict := (anOrderedCollection collect: [:each| each id -> each]) asDictionary.
columnDict := (anOrderedCollection collect: [:each| each id -> each]) as: Dictionary.

cardsJson do: [:each| SPBCard buildFromRemoteProject: each intoColumns: columnDict].
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"deleteLabel:fromCard:" : "FP 6/18/2024 13:41",
"deleteLabel:fromDraft:" : "FP 7/11/2024 13:11",
"deleteLabel:fromIssue:" : "FP 6/19/2024 16:54",
"fetchCardsIntoColumns:" : "FP 6/17/2024 17:20",
"fetchCardsIntoColumns:" : "FP 7/11/2024 13:23",
"getAssigneeString:" : "FP 6/18/2024 12:03",
"getProjectId:user:" : "FP 6/15/2024 13:38",
"listPossibleAssignees" : "FP 6/16/2024 17:44",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ tests-cards
testCreateNewCardInto

| dict |
dict := {'test' -> true} asDictionary.
dict := Dictionary newFromPairs: {'test'. true}.
self assert: (provider createNewCard: dict into: SPBColumn new).
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"testAssigneeUpdateString" : "FP 6/18/2024 12:03",
"testCreateCardsFromColumn" : "FP 7/11/2024 12:06",
"testCreateColumn" : "FP 7/11/2024 12:51",
"testCreateNewCardInto" : "FP 7/11/2024 12:09",
"testCreateNewCardInto" : "FP 7/11/2024 13:19",
"testFetchCardIntoColumns" : "FP 7/11/2024 12:27",
"testListPossibleAssignees" : "FP 7/9/2024 11:32",
"testListPossibleLabels" : "FP 7/9/2024 11:37",
Expand Down

0 comments on commit 6a1badb

Please sign in to comment.