所以在我的功能文件中,我有一个登录后台步骤:
Given /^I login$/ do
user = Factory(:user)
visit '/login'
fill_in("login", :with => user.login)
fill_in("password", :with => user.password)
click_button("Login")
@current_user = user
end
在下一步中,我希望能够包含一个 user_id,但不确定如何获取我已登录的 @current_user。
Given a post exists with name: "My Post", category_id: 3, user_id: ?????
如何使用 @current_user 创建正确的关系?
谢谢。