Allow to decide which tasks are going to be executed per playground (#218)

This commit is contained in:
Jonathan Leibiusky
2017-11-21 11:58:31 -03:00
committed by Marcos Nils
parent f22bf1b3da
commit 95e4aaa5f7
5 changed files with 163 additions and 11 deletions

View File

@@ -707,5 +707,6 @@ func TestPlaygroundGetAll(t *testing.T) {
found, err := storage.PlaygroundGetAll()
assert.Nil(t, err)
assert.Equal(t, []*types.Playground{p1, p2}, found)
assert.Subset(t, []*types.Playground{p1, p2}, found)
assert.Len(t, found, 2)
}