~swift-coresec/ubuntu/maverick/swift/trunk

« back to all changes in this revision

Viewing changes to test/functional/tests.py

  • Committer: Tarmac
  • Author(s): Chuck Thier
  • Date: 2010-07-22 15:12:00 UTC
  • mfrom: (35.1.1 fixegg)
  • Revision ID: hudson@openstack.org-20100722151200-2ihbxq2kxvf7cqg4
Removed test for functionality that doesn't exist any more

Show diffs side-by-side

added added

removed removed

Lines of Context:
582
582
            (cont.name))
583
583
        self.assert_status(400)
584
584
 
585
 
    def testYourmomContainer(self):
586
 
        cont = self.env.account.container('yourmom')
587
 
        self.assert_(cont.create())
588
 
 
589
 
        info = cont.info()
590
 
        self.assert_status(204)
591
 
        self.assertEquals(info['object_count'], 0)
592
 
        self.assertEquals(info['bytes_used'], 0)
593
 
 
594
585
    def testContainerExistenceCachingProblem(self):
595
586
        cont = self.env.account.container(Utils.create_name())
596
587
        self.assertRaises(ResponseError, cont.files)