Closed milannister closed 7 years ago
Problem is here:
.prop("outgoingTasks", taskBuilder)
TaskBuilder will generate only one instance of PomodoTask
class, while outgoingTasks
expects list.
To solve this, you will need to wrap taskBuilder
into list
method. However, that way you'll have only one task in each instance.
.prop("outgoingTasks", list(taskBuilder))
Functionality you need, is probably still not implemented within Ranger. Take a look at #172 and #173
Yup, not built yet. I thought it was implemented. I'm closing the issue.
Given following domain classes:
and
When tried to be used in unit test like this:
I get the following exception:
If it is wrong usage, maybe it would be good to give friendlier message.