~gholt/swift/autocreate

« back to all changes in this revision

Viewing changes to test/unit/common/test_utils.py

  • Committer: gholt
  • Date: 2011-06-10 15:55:25 UTC
  • Revision ID: gholt@rackspace.com-20110610155525-ik810338alf5akj3
Adding some tests

Show diffs side-by-side

added added

removed removed

Lines of Context:
768
768
        self.assertEquals(utils.human_readable(1237940039285380274899124224),
769
769
                          '1024Yi')
770
770
 
 
771
    def test_TRUE_VALUES(self):
 
772
        for v in utils.TRUE_VALUES:
 
773
            self.assertEquals(v, v.lower())
 
774
 
771
775
 
772
776
if __name__ == '__main__':
773
777
    unittest.main()