コード例 #1
0
ファイル: test_rds.py プロジェクト: krm731/troposphere
    def test_validate_storage_type(self):
        for t in rds.VALID_STORAGE_TYPES:
            rds.validate_storage_type(t)

        with self.assertRaises(ValueError):
            rds.validate_storage_type("bad_storage_type")
コード例 #2
0
    def test_validate_storage_type(self):
        for t in rds.VALID_STORAGE_TYPES:
            rds.validate_storage_type(t)

        with self.assertRaises(ValueError):
            rds.validate_storage_type("bad_storage_type")