aboutsummaryrefslogtreecommitdiffstats
path: root/features/step_definitions/authors_steps.rb
diff options
context:
space:
mode:
Diffstat (limited to 'features/step_definitions/authors_steps.rb')
-rw-r--r--features/step_definitions/authors_steps.rb7
1 files changed, 7 insertions, 0 deletions
diff --git a/features/step_definitions/authors_steps.rb b/features/step_definitions/authors_steps.rb
new file mode 100644
index 0000000..eaa5f32
--- /dev/null
+++ b/features/step_definitions/authors_steps.rb
@@ -0,0 +1,7 @@
+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