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/authors_steps.rb7
-rw-r--r--features/support/step_definitions/category_steps.rb11
-rw-r--r--features/support/step_definitions/tags_steps.rb13
3 files changed, 0 insertions, 31 deletions
diff --git a/features/support/step_definitions/authors_steps.rb b/features/support/step_definitions/authors_steps.rb
deleted file mode 100644
index d78ca90..0000000
--- a/features/support/step_definitions/authors_steps.rb
+++ /dev/null
@@ -1,7 +0,0 @@
-Then /^there should be (\d+) blog posts?$/ do |num|
- BlogPost.all.size == num
-end
-
-Then /^the blog post should belong to me$/ do
- BlogPost.first.author.login == User.last.login
-end \ No newline at end of file
diff --git a/features/support/step_definitions/category_steps.rb b/features/support/step_definitions/category_steps.rb
deleted file mode 100644
index 891b5c0..0000000
--- a/features/support/step_definitions/category_steps.rb
+++ /dev/null
@@ -1,11 +0,0 @@
-Given /^there is a category titled "([^"]*)"$/ do |title|
- @category = Factory.create(:blog_category, :title => title)
-end
-
-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|
- 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
deleted file mode 100644
index 8280474..0000000
--- a/features/support/step_definitions/tags_steps.rb
+++ /dev/null
@@ -1,13 +0,0 @@
-Given /^there is a blog post titled "([^"]*)" and tagged "([^"]*)"$/ do |title, 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.create(:blog_post, :tag_list => tag_name)
- tag = BlogPost.tag_counts_on(:tags).first
- visit tagged_posts_path(tag.id, tag_name.parameterize)
-end
-
-Then /^the blog post should have the tags "([^"]*)"$/ do |tag_list|
- BlogPost.last.tag_list == tag_list.split(', ')
-end