blob: f3fd3ec4efa63d66282210bc7a6f95eeb2b1fd7c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
@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
|