~super-friends/friends/13.10

« back to all changes in this revision

Viewing changes to friends/tests/test_flickr.py

  • Committer: Tarmac
  • Author(s): Robert Bruce Park
  • Date: 2013-07-22 20:34:58 UTC
  • mfrom: (224.1.12 simplify-contacts)
  • Revision ID: tarmac-20130722203458-dwbs94fsik5iydt0
Vast simplification of contact logic.

Approved by Ken VanDine, PS Jenkins bot, Robert Bruce Park.

Show diffs side-by-side

added added

removed removed

Lines of Context:
49
49
 
50
50
    def test_features(self):
51
51
        # The set of public features.
52
 
        self.assertEqual(Flickr.get_features(), ['receive', 'upload'])
 
52
        self.assertEqual(Flickr.get_features(),
 
53
                         ['delete_contacts', 'receive', 'upload'])
53
54
 
54
55
    @mock.patch('friends.utils.http.Soup.Message',
55
56
                FakeSoupMessage('friends.tests.data', 'flickr-nophotos.dat'))