aboutsummaryrefslogtreecommitdiffstats
path: root/features/support/step_definitions
diff options
context:
space:
mode:
Diffstat (limited to 'features/support/step_definitions')
-rw-r--r--features/support/step_definitions/category_steps.rb8
-rw-r--r--features/support/step_definitions/tags_steps.rb4
2 files changed, 6 insertions, 6 deletions
diff --git a/features/support/step_definitions/category_steps.rb b/features/support/step_definitions/category_steps.rb
index 31176b4..891b5c0 100644
--- a/features/support/step_definitions/category_steps.rb
+++ b/features/support/step_definitions/category_steps.rb
@@ -1,11 +1,11 @@
Given /^there is a category titled "([^"]*)"$/ do |title|
- @category = Factory(:blog_category, :title => title)
+ @category = Factory.create(:blog_category, :title => title)
end
-Then /^the blog post should have "([^"]*)" category$/ do |num_category|
- BlogPost.last.categories.count.should == num_category
+Then /^the blog post should have ([\d]*) categor[yies]{1,3}$/ do |num_category|
+ BlogPost.last.categories.count.should == num_category.to_i
end
-Then /^the blog post should have the category "([^"]*)"$/ do |category|
+Then /^the blog post should have the category "([^"]*)"$/ do |category|
BlogPost.last.categories.first.title.should == category
end \ No newline at end of file
diff --git a/features/support/step_definitions/tags_steps.rb b/features/support/step_definitions/tags_steps.rb
index 7b895e5..8280474 100644
--- a/features/support/step_definitions/tags_steps.rb
+++ b/features/support/step_definitions/tags_steps.rb
@@ -1,9 +1,9 @@
Given /^there is a blog post titled "([^"]*)" and tagged "([^"]*)"$/ do |title, tag_name|
- @blog_post = Factory(:post, :title => title, :tag_list => tag_name)
+ @blog_post = Factory.create(:blog_post, :title => title, :tag_list => tag_name)
end
When /^I visit the tagged posts page for "([^"]*)"$/ do |tag_name|
- @blog_post ||= Factory(:post, :tag_list => tag_name)
+ @blog_post ||= Factory.create(:blog_post, :tag_list => tag_name)
tag = BlogPost.tag_counts_on(:tags).first
visit tagged_posts_path(tag.id, tag_name.parameterize)
end