aboutsummaryrefslogtreecommitdiffstats
path: root/features/support
diff options
context:
space:
mode:
Diffstat (limited to 'features/support')
-rw-r--r--features/support/step_definitions/authors_steps.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/features/support/step_definitions/authors_steps.rb b/features/support/step_definitions/authors_steps.rb
index 6f695ca..7dd30ac 100644
--- a/features/support/step_definitions/authors_steps.rb
+++ b/features/support/step_definitions/authors_steps.rb
@@ -1,5 +1,5 @@
Given /^there is a user named "([^\"]*)"$/ do |login|
- @user = Factory.create(:user, :login => login, :password => "#{login}-123", :password_confirmation => "#{login}-123")
+ @user = Factory.create(:user, :login => login)
end
Then /^there should be (\d+) blog posts?$/ do |num|
@@ -7,5 +7,5 @@ Then /^there should be (\d+) blog posts?$/ do |num|
end
Then /^the blog post should belong to "([^\"]*)"$/ do |login|
- BlogPost.last.author.login == login
+ BlogPost.first.author.login == login
end \ No newline at end of file