diff options
Diffstat (limited to 'test cases/rewrite/3 kwargs/remove.json')
-rw-r--r-- | test cases/rewrite/3 kwargs/remove.json | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/test cases/rewrite/3 kwargs/remove.json b/test cases/rewrite/3 kwargs/remove.json new file mode 100644 index 0000000..e33cb66 --- /dev/null +++ b/test cases/rewrite/3 kwargs/remove.json @@ -0,0 +1,38 @@ +[ + { + "type": "kwargs", + "function": "project", + "id": "/", + "operation": "set", + "kwargs": { + "license": ["GPL", "MIT", "BSD", "Boost"] + } + }, + { + "type": "kwargs", + "function": "project", + "id": "/", + "operation": "remove", + "kwargs": { + "license": ["MIT"] + } + }, + { + "type": "kwargs", + "function": "project", + "id": "/", + "operation": "remove", + "kwargs": { + "license": "BSD" + } + }, + { + "type": "kwargs", + "function": "project", + "id": "//", + "operation": "remove", + "kwargs": { + "license": "Boost" + } + } +] |