当前位置: 首页>>代码示例>>Python>>正文


Python Dependency.notify_new_relic方法代码示例

本文整理汇总了Python中common.utilities.inversion_of_control.Dependency.notify_new_relic方法的典型用法代码示例。如果您正苦于以下问题:Python Dependency.notify_new_relic方法的具体用法?Python Dependency.notify_new_relic怎么用?Python Dependency.notify_new_relic使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在common.utilities.inversion_of_control.Dependency的用法示例。


在下文中一共展示了Dependency.notify_new_relic方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: CoreJenkinsDeploymentTest

# 需要导入模块: from common.utilities.inversion_of_control import Dependency [as 别名]
# 或者: from common.utilities.inversion_of_control.Dependency import notify_new_relic [as 别名]
class CoreJenkinsDeploymentTest(unittest.TestCase):
    def setUp(self):
        register_common_mock_dependencies()
        self.deployment_provider = Dependency("DeploymentProvider").value

    def doCleanups(self):
        dependencies.clear()

    def test_notify_new_relic(self):
        response = self.deployment_provider.notify_new_relic("Mack Daddy App", "The daddy of the mack daddy", "Daddy Mack")

        self.assertEqual(self.deployment_provider.new_relic_application_name, "Mack Daddy App")
        self.assertEqual(self.deployment_provider.new_relic_deployment_description, "The daddy of the mack daddy")
        self.assertEqual(self.deployment_provider.new_relic_api_key, "Daddy Mack")

        # make sure we get an xml string back, with a <deployment> root node that has <id> and <timestamp> elements
        tree = ET.fromstring(response)
        self.assertEqual(tree.tag, "deployment")
        self.assertEqual(tree.find("id").text, "1489838")
        self.assertEqual(tree.find("timestamp").text, "2013-05-05T11:35:24-07:00")
开发者ID:erezrubinstein,项目名称:aa,代码行数:22,代码来源:test_jenkins_deployment.py


注:本文中的common.utilities.inversion_of_control.Dependency.notify_new_relic方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。