diff options
author | Philip Arndt <parndt@gmail.com> | 2010-11-22 15:23:25 +1300 |
---|---|---|
committer | Philip Arndt <parndt@gmail.com> | 2010-11-22 15:26:53 +1300 |
commit | e5b9af1054bbd259bde0265acf4386cdaab0ca41 (patch) | |
tree | a5a89e83d262aab943c7e3f5d22dc52788de24d8 /features | |
parent | ebb4c59cef0eb4e89700275e23579ca6dd18d619 (diff) | |
parent | 6d94a0ba7b781f93519183c96bbc718465dccdb4 (diff) | |
download | refinerycms-blog-e5b9af1054bbd259bde0265acf4386cdaab0ca41.tar.gz refinerycms-blog-e5b9af1054bbd259bde0265acf4386cdaab0ca41.tar.bz2 refinerycms-blog-e5b9af1054bbd259bde0265acf4386cdaab0ca41.zip |
Merged in Joe's and Steven's forks and updated for compatibility with < 0.9.9. Also, specs now work by including the factories and I have also laid the foundation for cucumber features. Fixed an issue where the javascript file was clashing with the same code we merged to core from this engine relating to submenus. Regenerated gemspec.
Diffstat (limited to 'features')
-rw-r--r-- | features/support/factories/blog_categories.rb | 4 | ||||
-rw-r--r-- | features/support/factories/blog_comments.rb | 10 | ||||
-rw-r--r-- | features/support/factories/blog_posts.rb | 4 | ||||
-rw-r--r-- | features/support/paths.rb | 24 |
4 files changed, 42 insertions, 0 deletions
diff --git a/features/support/factories/blog_categories.rb b/features/support/factories/blog_categories.rb new file mode 100644 index 0000000..be28d88 --- /dev/null +++ b/features/support/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/features/support/factories/blog_comments.rb b/features/support/factories/blog_comments.rb new file mode 100644 index 0000000..93beaf3 --- /dev/null +++ b/features/support/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/features/support/factories/blog_posts.rb b/features/support/factories/blog_posts.rb new file mode 100644 index 0000000..6947e81 --- /dev/null +++ b/features/support/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 diff --git a/features/support/paths.rb b/features/support/paths.rb new file mode 100644 index 0000000..dbd04dd --- /dev/null +++ b/features/support/paths.rb @@ -0,0 +1,24 @@ +module NavigationHelpers + module Refinery + module Blog + def path_to(page_name) + case page_name + when /the list of blog posts/ + admin_blog_posts_path + when /the new blog posts? form/ + new_admin_blog_post_path + else + begin + if page_name =~ /the blog post titled "?([^\"]*)"?/ and (page = BlogPost.find_by_title($1)).present? + self.url_for(page.url) + else + nil + end + rescue + nil + end + end + end + end + end +end |