aboutsummaryrefslogtreecommitdiffstats
path: root/features
diff options
context:
space:
mode:
authorJoe Sak <joe@joesak.com>2011-02-24 22:29:41 -0600
committerJoe Sak <joe@joesak.com>2011-02-24 22:29:41 -0600
commitc9c38df5ba94fa6dfa6f04cffd24a96e9e5d88ca (patch)
treef90583adf8ac3b7b323a796dc3182fa3c926620d /features
parente218c8fc5bb5084d50b0be4b01dc83ca51decca0 (diff)
parent2b322a7bf4f64e1c019eff163d90b9cbf52ee501 (diff)
downloadrefinerycms-blog-c9c38df5ba94fa6dfa6f04cffd24a96e9e5d88ca.tar.gz
refinerycms-blog-c9c38df5ba94fa6dfa6f04cffd24a96e9e5d88ca.tar.bz2
refinerycms-blog-c9c38df5ba94fa6dfa6f04cffd24a96e9e5d88ca.zip
Closes GH-44. Authors are now associated with blog posts by current_user Merge branch 'addingusers'
Conflicts: app/models/blog_post.rb
Diffstat (limited to 'features')
-rw-r--r--features/authors.feature15
-rw-r--r--features/support/step_definitions/authors_steps.rb7
2 files changed, 22 insertions, 0 deletions
diff --git a/features/authors.feature b/features/authors.feature
new file mode 100644
index 0000000..1042c9f
--- /dev/null
+++ b/features/authors.feature
@@ -0,0 +1,15 @@
+@blog
+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 "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/support/step_definitions/authors_steps.rb b/features/support/step_definitions/authors_steps.rb
new file mode 100644
index 0000000..d78ca90
--- /dev/null
+++ b/features/support/step_definitions/authors_steps.rb
@@ -0,0 +1,7 @@
+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