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


Python Context.prefix方法代码示例

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


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

示例1: prefixes_should_apply_to_sudo

# 需要导入模块: from invoke import Context [as 别名]
# 或者: from invoke.Context import prefix [as 别名]
        def prefixes_should_apply_to_sudo(self, Local):
            runner = Local.return_value
            c = Context()
            with c.prefix("cd foo"):
                c.sudo("whoami")

            cmd = "sudo -S -p '[sudo] password: ' cd foo && whoami"
            assert runner.run.called, "sudo() never called runner.run()!"
            assert runner.run.call_args[0][0] == cmd
开发者ID:miradam,项目名称:invoke,代码行数:11,代码来源:context.py

示例2: prefixes_should_apply_to_sudo

# 需要导入模块: from invoke import Context [as 别名]
# 或者: from invoke.Context import prefix [as 别名]
        def prefixes_should_apply_to_sudo(self, Local):
            runner = Local.return_value
            ctx = Context()
            with ctx.prefix('cd foo'):
                ctx.sudo('whoami')

            cmd = "sudo -S -p '[sudo] password: ' cd foo && whoami"
            ok_(runner.run.called, "sudo() never called runner.run()!")
            eq_(runner.run.call_args[0][0], cmd)
开发者ID:yws,项目名称:invoke,代码行数:11,代码来源:context.py

示例3: prefixes_should_apply_to_run

# 需要导入模块: from invoke import Context [as 别名]
# 或者: from invoke.Context import prefix [as 别名]
        def prefixes_should_apply_to_run(self, Local):
            runner = Local.return_value
            c = Context()
            with c.prefix("cd foo"):
                c.run("whoami")

            cmd = "cd foo && whoami"
            assert runner.run.called, "run() never called runner.run()!"
            assert runner.run.call_args[0][0] == cmd
开发者ID:miradam,项目名称:invoke,代码行数:11,代码来源:context.py

示例4: prefixes_should_apply_to_run

# 需要导入模块: from invoke import Context [as 别名]
# 或者: from invoke.Context import prefix [as 别名]
        def prefixes_should_apply_to_run(self, Local):
            runner = Local.return_value
            ctx = Context()
            with ctx.prefix('cd foo'):
                ctx.run('whoami')

            cmd = "cd foo && whoami"
            ok_(runner.run.called, "run() never called runner.run()!")
            eq_(runner.run.call_args[0][0], cmd)
开发者ID:yws,项目名称:invoke,代码行数:11,代码来源:context.py

示例5: cd_should_occur_before_prefixes

# 需要导入模块: from invoke import Context [as 别名]
# 或者: from invoke.Context import prefix [as 别名]
        def cd_should_occur_before_prefixes(self, Local):
            runner = Local.return_value
            c = Context()
            with c.prefix("source venv"):
                with c.cd("foo"):
                    c.run("whoami")

            cmd = "cd foo && source venv && whoami"
            assert runner.run.called, "run() never called runner.run()!"
            assert runner.run.call_args[0][0] == cmd
开发者ID:miradam,项目名称:invoke,代码行数:12,代码来源:context.py

示例6: cd_should_occur_before_prefixes

# 需要导入模块: from invoke import Context [as 别名]
# 或者: from invoke.Context import prefix [as 别名]
        def cd_should_occur_before_prefixes(self, Local):
            runner = Local.return_value
            ctx = Context()
            with ctx.prefix('source venv'):
                with ctx.cd('foo'):
                    ctx.run('whoami')

            cmd = "cd foo && source venv && whoami"
            ok_(runner.run.called, "run() never called runner.run()!")
            eq_(runner.run.call_args[0][0], cmd)
开发者ID:yws,项目名称:invoke,代码行数:12,代码来源:context.py

示例7: nesting_should_retain_order

# 需要导入模块: from invoke import Context [as 别名]
# 或者: from invoke.Context import prefix [as 别名]
        def nesting_should_retain_order(self, Local):
            runner = Local.return_value
            ctx = Context()
            with ctx.prefix('cd foo'):
                with ctx.prefix('cd bar'):
                    ctx.run('whoami')
                    cmd = "cd foo && cd bar && whoami"
                    ok_(runner.run.called, "run() never called runner.run()!")
                    eq_(runner.run.call_args[0][0], cmd)

                ctx.run('whoami')
                cmd = "cd foo && whoami"
                ok_(runner.run.called, "run() never called runner.run()!")
                eq_(runner.run.call_args[0][0], cmd)

            # also test that prefixes do not persist
            ctx.run('whoami')
            cmd = "whoami"
            ok_(runner.run.called, "run() never called runner.run()!")
            eq_(runner.run.call_args[0][0], cmd)
开发者ID:yws,项目名称:invoke,代码行数:22,代码来源:context.py

示例8: nesting_should_retain_order

# 需要导入模块: from invoke import Context [as 别名]
# 或者: from invoke.Context import prefix [as 别名]
        def nesting_should_retain_order(self, Local):
            runner = Local.return_value
            c = Context()
            with c.prefix('cd foo'):
                with c.prefix('cd bar'):
                    c.run('whoami')
                    cmd = "cd foo && cd bar && whoami"
                    assert runner.run.called, "run() never called runner.run()!" # noqa
                    assert runner.run.call_args[0][0] == cmd

                c.run('whoami')
                cmd = "cd foo && whoami"
                assert runner.run.called, "run() never called runner.run()!"
                assert runner.run.call_args[0][0] == cmd

            # also test that prefixes do not persist
            c.run('whoami')
            cmd = "whoami"
            assert runner.run.called, "run() never called runner.run()!"
            assert runner.run.call_args[0][0] == cmd
开发者ID:offbyone,项目名称:invoke,代码行数:22,代码来源:context.py


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