versionone / VersionOne.SDK.Python

A library for custom Python development against the VersionOne Platform's REST-based API.
BSD 3-Clause "New" or "Revised" License
23 stars 32 forks source link

Multivalue Field can't remove values #22

Open aarcro opened 9 years ago

aarcro commented 9 years ago

Starting at line: https://github.com/versionone/VersionOne.SDK.Python/blob/master/v1pysdk/v1meta.py#L110

There is no code path that allows you to remove values from a multi value field.

As an API user I want to set multi-value fields to exact values So that assignment works as expected.

Given a Workitem with Owners = [user1, user2] When I assign [user2, user3] to Owners And commit Then Owners should be [user2, user3]