diff options
author | Philip Arndt <parndt@gmail.com> | 2010-11-23 09:34:11 +1300 |
---|---|---|
committer | Philip Arndt <parndt@gmail.com> | 2010-11-23 09:34:11 +1300 |
commit | 97101633ca5f0a94560d18adc0df41ca8f60eed7 (patch) | |
tree | c2414815b5476c3982647095af1625d459506af6 /features | |
parent | 8b1fd448316a69d4849ff47d9948364dbbbc4db1 (diff) | |
download | refinerycms-blog-97101633ca5f0a94560d18adc0df41ca8f60eed7.tar.gz refinerycms-blog-97101633ca5f0a94560d18adc0df41ca8f60eed7.tar.bz2 refinerycms-blog-97101633ca5f0a94560d18adc0df41ca8f60eed7.zip |
Consistent whitespace.
Diffstat (limited to 'features')
-rw-r--r-- | features/support/factories/blog_categories.rb | 2 | ||||
-rw-r--r-- | features/support/factories/blog_comments.rb | 2 | ||||
-rw-r--r-- | features/support/factories/blog_posts.rb | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/features/support/factories/blog_categories.rb b/features/support/factories/blog_categories.rb index be28d88..10b51b5 100644 --- a/features/support/factories/blog_categories.rb +++ b/features/support/factories/blog_categories.rb @@ -1,4 +1,4 @@ Factory.define(:blog_category) do |f| f.title "Shopping" f.posts {|p| [p.association(:post)]} -end
\ No newline at end of file +end diff --git a/features/support/factories/blog_comments.rb b/features/support/factories/blog_comments.rb index 93beaf3..d5c5b1d 100644 --- a/features/support/factories/blog_comments.rb +++ b/features/support/factories/blog_comments.rb @@ -7,4 +7,4 @@ Factory.define(:blog_comment) do |f| 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 +end diff --git a/features/support/factories/blog_posts.rb b/features/support/factories/blog_posts.rb index 6947e81..8dd3f54 100644 --- a/features/support/factories/blog_posts.rb +++ b/features/support/factories/blog_posts.rb @@ -1,4 +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 +end |