aboutsummaryrefslogtreecommitdiffstats
path: root/features
diff options
context:
space:
mode:
Diffstat (limited to 'features')
-rw-r--r--features/authors.feature15
-rw-r--r--features/step_definitions/authors_steps.rb7
2 files changed, 0 insertions, 22 deletions
diff --git a/features/authors.feature b/features/authors.feature
deleted file mode 100644
index f3fd3ec..0000000
--- a/features/authors.feature
+++ /dev/null
@@ -1,15 +0,0 @@
-@blog @blog_authors
-Feature: Blog Post Authors
- Blog posts can be assigned authors through the given user model
- current_user is assumed through admin screens
-
- Scenario: Saving a blog post in blog_posts#new associates the current_user as the author
- Given I am a logged in refinery user
-
- When I am on the new blog post form
- And I fill in "Title" with "This is my blog post"
- And I fill in "blog_post_body" with "And I love it"
- And I press "Save"
-
- Then there should be 1 blog post
- And the blog post should belong to me \ No newline at end of file
diff --git a/features/step_definitions/authors_steps.rb b/features/step_definitions/authors_steps.rb
deleted file mode 100644
index eaa5f32..0000000
--- a/features/step_definitions/authors_steps.rb
+++ /dev/null
@@ -1,7 +0,0 @@
-Then /^there should be (\d+) blog posts?$/ do |num|
- ::Refinery::BlogPost.all.size == num
-end
-
-Then /^the blog post should belong to me$/ do
- ::Refinery::BlogPost.first.author.login == ::Refinery::User.last.login
-end \ No newline at end of file