~rnr-developers/rnr-server/rnrclient

« back to all changes in this revision

Viewing changes to tests/test_rnrclient.py

  • Committer: Anthony Lenton
  • Date: 2011-01-21 19:55:53 UTC
  • Revision ID: anthony.lenton@canonical.com-20110121195553-xuxe2p3xiy69gkhw
Added test for missing submit_usefulness method.

Show diffs side-by-side

added added

removed removed

Lines of Context:
91
91
            self.assertEquals('https', called_scheme())
92
92
            rnrclient.flag_review(review_id=1, reason='foo', text='bar')
93
93
            self.assertEquals('https', called_scheme())
94
 
        
 
94
            rnrclient.submit_usefulness(review_id=1, useful='True')
 
95
            self.assertEquals('https', called_scheme())
95
96
        
96
97
 
97
98
if __name__ == "__main__":