aboutsummaryrefslogtreecommitdiffstats
path: root/features
diff options
context:
space:
mode:
authorJoe Sak <joe@joesak.com>2011-02-24 22:28:23 -0600
committerJoe Sak <joe@joesak.com>2011-02-24 22:28:23 -0600
commitbe7763d8d275e711457f89bbf64a54f0cb557186 (patch)
tree81f93c1e5562c6d38b1ba8079fa43c444a1af48c /features
parent0455eb155e6c3928964a64052194ab4298fd032e (diff)
downloadrefinerycms-blog-be7763d8d275e711457f89bbf64a54f0cb557186.tar.gz
refinerycms-blog-be7763d8d275e711457f89bbf64a54f0cb557186.tar.bz2
refinerycms-blog-be7763d8d275e711457f89bbf64a54f0cb557186.zip
Fix bad syntax in cukes
Diffstat (limited to 'features')
-rw-r--r--features/authors.feature1
-rw-r--r--features/support/step_definitions/authors_steps.rb2
2 files changed, 2 insertions, 1 deletions
diff --git a/features/authors.feature b/features/authors.feature
index 7c7df8f..1042c9f 100644
--- a/features/authors.feature
+++ b/features/authors.feature
@@ -1,3 +1,4 @@
+@blog
Feature: Blog Post Authors
Blog posts can be assigned authors through the given user model
current_user is assumed through admin screens
diff --git a/features/support/step_definitions/authors_steps.rb b/features/support/step_definitions/authors_steps.rb
index e97287e..d78ca90 100644
--- a/features/support/step_definitions/authors_steps.rb
+++ b/features/support/step_definitions/authors_steps.rb
@@ -2,6 +2,6 @@ Then /^there should be (\d+) blog posts?$/ do |num|
BlogPost.all.size == num
end
-Then /^the blog post should belong to me$/
+Then /^the blog post should belong to me$/ do
BlogPost.first.author.login == User.last.login
end \ No newline at end of file