diff options
Diffstat (limited to 'tools/python_test.py')
-rw-r--r-- | tools/python_test.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/python_test.py b/tools/python_test.py index d09d24b..90587ac 100644 --- a/tools/python_test.py +++ b/tools/python_test.py @@ -163,6 +163,10 @@ assert(len(admin_project.labels.list()) == 1) label1.new_name = 'label1updated' label1.save() assert(label1.name == 'label1updated') +label1.subscribe() +assert(label1.subscribed == True) +label1.unsubscribe() +assert(label1.subscribed == False) label1.delete() # milestones |