Cucumber 测试:引用观察者创建的 Rails 对象

发布于 2024-10-08 07:46:53 字数 539 浏览 9 评论 0原文

我有一个黄瓜测试,它需要引用观察者创建的对象,我想知道是否有办法做到这一点。

具体来说,

  1. 创建 User 实例时会自动创建一个 Profile 实例。
  2. 在 Cucumber(并使用 Pickle)中,我创建一个 User 实例:
  3. user_observer 自动创建与“u_1”关联的配置文件
  4. ,并且我想在不同的场景中引用该配置文件。

例如。

Given the following users exist:
| user | first_name | last_name |
| test | john       | malkovich |
And the following resume_packs exist:
| profile      | page | pack_name |
| test.profile |  2   | who's who |

test.profile 是一个空格填充符,那么引用 test.profile 的实际方法是什么?

I have a cucumber test, which needs to refer to an object that is created by an observer and am wondering if there is a way to do that.

Specifically,

  1. There is a Profile instance that is automatically created when a User instance is created.
  2. In Cucumber (and using Pickle), I create a User instance:
  3. The user_observer automatically creates a profile associated with "u_1"
  4. And I want to refer to the Profile in a different scenario.

For example.

Given the following users exist:
| user | first_name | last_name |
| test | john       | malkovich |
And the following resume_packs exist:
| profile      | page | pack_name |
| test.profile |  2   | who's who |

test.profile is a space filler, so what is the actual way to refer to test.profile?

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

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

发布评论

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

评论(1

快乐很简单 2024-10-15 07:46:53

我建议使用您自己的步骤定义并自己创建您需要的东西。

Given the user "John Malkovich" has a resume pack

I would advice to use your own step definitions and create the stuff you need yourself.

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