python中有基于故事的BDD测试框架吗?

发布于 2024-11-07 16:21:46 字数 1536 浏览 3 评论 0原文

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

难以启齿的温柔 2024-11-14 16:21:46

Lettuce 是 Cucumber 的另一个 Python 端口。它运行良好,文档还描述了 Django 的常用用法。

http://lettuce.it/index.html

这是另一篇博客文章,描述了使用 Lettuce 和 Splinter 的 BDD :

http://cilliano.com/blog /2011/02/07/django-bdd-with-lettuce-and-splinter/

Lettuce is another Python port of Cucumber. It works well and the documentation describes, among the usual usages, Django usage as well.

http://lettuce.it/index.html

And here's another blog post that describes BDD with Lettuce and Splinter:

http://cilliano.com/blog/2011/02/07/django-bdd-with-lettuce-and-splinter/

哆兒滾 2024-11-14 16:21:46

Python freshen 是 Cucumber 的 Python 端口,以鼻子插件实现。

Python freshen is a python port of cucumber, implemented as nose plugin.

长亭外,古道边 2024-11-14 16:21:46

您可能还想看看 Behave
它是从头开始构建的,用于进行 BDD 风格的测试,而不是鼻子的“附加组件”或来自其他框架的端口。

You might also want to take a look at Behave.
It's built from the ground up to do BDD style testing as opposed to either an "add-on" to nose or a port from another framework.

等风来 2024-11-14 16:21:46

我看到选项是生菜、新鲜和机器人框架。

我们使用 机器人框架 的原因有很多,但主要的原因是

  1. 它几乎可以做其他框架支持的任何事情+更多
  2. 它有一个不错的 IDE,称为 RIDE
  3. 它生成的报告非常广泛,而且,
    灵活
  4. 它拥有一个活跃且不断增长的用户社区

I see that the choices are lettuce, freshen and Robot Framework.

We use Robot Framework because of many reasons few main ones are

  1. It can do almost anything that other frameworks support + more
  2. It has a nice IDE called RIDE
  3. The reports that it generates are pretty extensive and also,
    flexible
  4. It has a an active and growing user community
风蛊 2024-11-14 16:21:46

我自己的实验导致了 pyspecs——一种简约的方法。它很容易开始工作:

pip install pyspecs

而且它也很容易使用:

from pyspecs import spec, given, when, then, the


class simple_addition(spec):
    @given
    def two_numbers(self):
        self.first = 2
        self.second = 3

    @when
    def we_add_them(self):
        self.result = add(self.first, self.second)

    @then
    def the_sum_should_equal_5(self):
        the(self.result).should.equal(5)


def add(a, b):
    return a + b

我欢迎反馈/合作......

My own experimentation led to pyspecs--a minimalistic approach. It's pretty easy to get working:

pip install pyspecs

And it's pretty easy to use too:

from pyspecs import spec, given, when, then, the


class simple_addition(spec):
    @given
    def two_numbers(self):
        self.first = 2
        self.second = 3

    @when
    def we_add_them(self):
        self.result = add(self.first, self.second)

    @then
    def the_sum_should_equal_5(self):
        the(self.result).should.equal(5)


def add(a, b):
    return a + b

I would welcome and feedback/collaboration...

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文