In your model, if you have
{% highlight ruby %}
accepts_nested_attributes_for :attachments
{% endhighlight %}
And you limit the accessible attributes with something like
{% highlight ruby %} …
Given you have two blueprints for users: {% highlight ruby %} User.blueprint {} User.blueprint(:admin) {} {% endhighlight %} Then this is how you reference them from a Cucumber feature definition: {% …