~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/code/model/tests/test_branchmergequeue.py

Exposed API for IBranchMergeQueue.branches

Show diffs side-by-side

added added

removed removed

Lines of Context:
135
135
        self.assertEqual(queue.configuration, configuration)
136
136
        self.assertEqual(queue.date_created, db_queue.date_created)
137
137
        self.assertEqual(len(queue.branches), 2)
 
138
 
 
139
    def test_set_configuration(self):
 
140
        """Test the mutator for setting configuration."""
 
141
        with person_logged_in(ANONYMOUS):
 
142
            db_queue = self.factory.makeBranchMergeQueue()
 
143
            launchpad = launchpadlib_for('test', db_queue.owner,
 
144
                service_root="http://api.launchpad.dev:8085")
 
145
 
 
146
        configuration = simplejson.dumps({'test': 'make check'})
 
147
 
 
148
        queue = ws_object(launchpad, db_queue)
 
149
        queue.configuration = configuration
 
150
        queue.lp_save()
 
151
 
 
152
        queue2 = ws_object(launchpad, db_queue)
 
153
        self.assertEqual(queue2.configuration, configuration)