aboutsummaryrefslogtreecommitdiffstats
path: root/spec/factories
diff options
context:
space:
mode:
authorJoe Sak <joe@joesak.com>2010-08-09 14:05:16 -0500
committerJoe Sak <joe@joesak.com>2010-08-09 14:05:16 -0500
commitbe4c8c3836e2d61edd516cac9ba1f4f0cb1ddf3b (patch)
tree4cee54987ab62db9268a5e96281910cf0cd871cd /spec/factories
parent4a25cde49f710adcefcb644b418a94d3d5339dbd (diff)
downloadrefinerycms-blog-be4c8c3836e2d61edd516cac9ba1f4f0cb1ddf3b.tar.gz
refinerycms-blog-be4c8c3836e2d61edd516cac9ba1f4f0cb1ddf3b.tar.bz2
refinerycms-blog-be4c8c3836e2d61edd516cac9ba1f4f0cb1ddf3b.zip
Converted to factory_girl use, a little refactored
Diffstat (limited to 'spec/factories')
-rw-r--r--spec/factories/blog_categories.rb4
-rw-r--r--spec/factories/blog_comments.rb10
-rw-r--r--spec/factories/blog_posts.rb4
3 files changed, 18 insertions, 0 deletions
diff --git a/spec/factories/blog_categories.rb b/spec/factories/blog_categories.rb
new file mode 100644
index 0000000..590e5b5
--- /dev/null
+++ b/spec/factories/blog_categories.rb
@@ -0,0 +1,4 @@
+Factory.define(:blog_category) do |f|
+ f.title "Shopping"
+ f.posts {|p| [p.association :post]}
+end \ No newline at end of file
diff --git a/spec/factories/blog_comments.rb b/spec/factories/blog_comments.rb
new file mode 100644
index 0000000..93beaf3
--- /dev/null
+++ b/spec/factories/blog_comments.rb
@@ -0,0 +1,10 @@
+Factory.sequence :email do |n|
+ "person#{n}@example.com"
+end
+
+Factory.define(:blog_comment) do |f|
+ f.name "Joe Commenter"
+ f.email { Factory.next(:email) }
+ f.body "Which one is the best for picking up new shoes?"
+ f.association :post
+end \ No newline at end of file
diff --git a/spec/factories/blog_posts.rb b/spec/factories/blog_posts.rb
new file mode 100644
index 0000000..6947e81
--- /dev/null
+++ b/spec/factories/blog_posts.rb
@@ -0,0 +1,4 @@
+Factory.define(:post, :class => BlogPost) do |f|
+ f.title "Top Ten Shopping Centers in Chicago"
+ f.body "These are the top ten shopping centers in Chicago. You're going to read a long blog post about them. Come to peace with it."
+end \ No newline at end of file