diff options
author | Joe Sak <joe@joesak.com> | 2011-03-11 13:21:24 -0600 |
---|---|---|
committer | Joe Sak <joe@joesak.com> | 2011-03-11 13:21:24 -0600 |
commit | b3f95341c3b67123084563bd38f9145b8ef4da78 (patch) | |
tree | 2be1d73388f241f323d43d983f325790628e362f /features/tags.feature | |
parent | ac7a6f6636912635835ff73320ded4ad1cc73746 (diff) | |
download | refinerycms-blog-b3f95341c3b67123084563bd38f9145b8ef4da78.tar.gz refinerycms-blog-b3f95341c3b67123084563bd38f9145b8ef4da78.tar.bz2 refinerycms-blog-b3f95341c3b67123084563bd38f9145b8ef4da78.zip |
More test coverage for tags: can fill tags in on admin form
Diffstat (limited to 'features/tags.feature')
-rw-r--r-- | features/tags.feature | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/features/tags.feature b/features/tags.feature new file mode 100644 index 0000000..d8b9427 --- /dev/null +++ b/features/tags.feature @@ -0,0 +1,21 @@ +@blog_tags +Feature: Blog Post Tags + Blog posts can be assigned tags + + Scenario: The blog post new/edit form has tag_list + Given I am a logged in refinery user + + When I am on the new blog post form + Then I should see "Tags" + + Scenario: The blog post new/edit form saves tag_list + 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 fill in "Tags" with "chicago, bikes, beers, babes" + And I press "Save" + + Then there should be 1 blog post + And the blog post should have the tags "chicago, bikes, beers, babes"
\ No newline at end of file |