diff --git a/vendor/plugins/resource_feeder/lib/resource_feeder/atom.rb b/vendor/plugins/resource_feeder/lib/resource_feeder/atom.rb index 315f1d3a..62d15370 100644 --- a/vendor/plugins/resource_feeder/lib/resource_feeder/atom.rb +++ b/vendor/plugins/resource_feeder/lib/resource_feeder/atom.rb @@ -3,6 +3,7 @@ require 'resource_feeder/common' module ResourceFeeder module Atom include ResourceFeeder::Common + include ActionController::Routing extend self def render_atom_feed_for(resources, options = {}) @@ -25,14 +26,14 @@ module ResourceFeeder options[:feed][:title] ||= klass.name.pluralize options[:feed][:id] ||= "tag:#{request.host_with_port}:#{klass.name.pluralize}" - options[:feed][:link] ||= SimplyHelpful::PolymorphicRoutes.polymorphic_url(new_record, options[:url_writer]) + options[:feed][:link] ||= polymorphic_url(new_record, :controller => options[:url_writer]) options[:item][:title] ||= [ :title, :subject, :headline, :name ] options[:item][:description] ||= [ :description, :body, :content ] options[:item][:pub_date] ||= [ :updated_at, :updated_on, :created_at, :created_on ] options[:item][:author] ||= [ :author, :creator ] - resource_link = lambda { |r| SimplyHelpful::PolymorphicRoutes.polymorphic_url(r, options[:url_writer]) } + resource_link = lambda { |r| polymorphic_url(r, :controller => options[:url_writer]) } xml.instruct! xml.feed "xml:lang" => "en-US", "xmlns" => 'http://www.w3.org/2005/Atom' do diff --git a/vendor/plugins/resource_feeder/lib/resource_feeder/rss.rb b/vendor/plugins/resource_feeder/lib/resource_feeder/rss.rb index 1053f427..bcbe7598 100644 --- a/vendor/plugins/resource_feeder/lib/resource_feeder/rss.rb +++ b/vendor/plugins/resource_feeder/lib/resource_feeder/rss.rb @@ -3,6 +3,7 @@ require 'resource_feeder/common' module ResourceFeeder module Rss include ResourceFeeder::Common + include ActionController::Routing extend self def render_rss_feed_for(resources, options = {}) @@ -25,7 +26,7 @@ module ResourceFeeder use_content_encoded = options[:item].has_key?(:content_encoded) options[:feed][:title] ||= klass.name.pluralize - options[:feed][:link] ||= SimplyHelpful::PolymorphicRoutes.polymorphic_url(new_record, options[:url_writer]) + options[:feed][:link] ||= polymorphic_url(new_record, :controller => options[:url_writer]) options[:feed][:language] ||= "en-us" options[:feed][:ttl] ||= "40" @@ -33,7 +34,7 @@ module ResourceFeeder options[:item][:description] ||= [ :description, :body, :content ] options[:item][:pub_date] ||= [ :updated_at, :updated_on, :created_at, :created_on ] - resource_link = lambda { |r| SimplyHelpful::PolymorphicRoutes.polymorphic_url(r, options[:url_writer]) } + resource_link = lambda { |r| polymorphic_url(r, :controller => options[:url_writer]) } rss_root_attributes = { :version => 2.0 } rss_root_attributes.merge!("xmlns:content" => "http://purl.org/rss/1.0/modules/content/") if use_content_encoded diff --git a/vendor/plugins/simply_helpful/CHANGELOG b/vendor/plugins/simply_helpful/CHANGELOG deleted file mode 100644 index fb38a874..00000000 --- a/vendor/plugins/simply_helpful/CHANGELOG +++ /dev/null @@ -1,9 +0,0 @@ -* Added formatted_polymorphic_url, formatted_polymorphic_path - -* Added support for route options. Example: - - polymorphic_url(:id => @subject, :anchor => "photo") - -* Added polymorphic routes for new and edit actions (new_polymorphic_url, edit_polymorphic_url) - -* Moved polymorphic routes from SimplyHelpful::RecordIdentifier to SimplyHelpful::PolymorphicRoutes \ No newline at end of file diff --git a/vendor/plugins/simply_helpful/README b/vendor/plugins/simply_helpful/README deleted file mode 100644 index 4711fe24..00000000 --- a/vendor/plugins/simply_helpful/README +++ /dev/null @@ -1,4 +0,0 @@ -SimplyHelpful -============= - -Description goes here \ No newline at end of file diff --git a/vendor/plugins/simply_helpful/Rakefile b/vendor/plugins/simply_helpful/Rakefile deleted file mode 100644 index efce24d2..00000000 --- a/vendor/plugins/simply_helpful/Rakefile +++ /dev/null @@ -1,22 +0,0 @@ -require 'rake' -require 'rake/testtask' -require 'rake/rdoctask' - -desc 'Default: run unit tests.' -task :default => :test - -desc 'Test the simply_helpful plugin.' -Rake::TestTask.new(:test) do |t| - t.libs << 'lib' - t.pattern = 'test/**/*_test.rb' - t.verbose = true -end - -desc 'Generate documentation for the simply_helpful plugin.' -Rake::RDocTask.new(:rdoc) do |rdoc| - rdoc.rdoc_dir = 'rdoc' - rdoc.title = 'SimplyHelpful' - rdoc.options << '--line-numbers' << '--inline-source' - rdoc.rdoc_files.include('README') - rdoc.rdoc_files.include('lib/**/*.rb') -end diff --git a/vendor/plugins/simply_helpful/init.rb b/vendor/plugins/simply_helpful/init.rb deleted file mode 100644 index d80efa41..00000000 --- a/vendor/plugins/simply_helpful/init.rb +++ /dev/null @@ -1,4 +0,0 @@ -require 'simply_helpful' -ActionController::Base.send :include, SimplyHelpful::RecordIdentificationHelper -ActionController::Base.helper SimplyHelpful::RecordIdentificationHelper, - SimplyHelpful::RecordTagHelper diff --git a/vendor/plugins/simply_helpful/lib/simply_helpful.rb b/vendor/plugins/simply_helpful/lib/simply_helpful.rb deleted file mode 100644 index 60e4d167..00000000 --- a/vendor/plugins/simply_helpful/lib/simply_helpful.rb +++ /dev/null @@ -1,10 +0,0 @@ -require 'simply_helpful/record_identification_helper' -require 'simply_helpful/record_identifier' -require 'simply_helpful/record_tag_helper' - -require 'simply_helpful/polymorphic_routes' - -require 'simply_helpful/jsg_extensions' -require 'simply_helpful/av_extensions' -require 'simply_helpful/form_helper_extensions' -require 'simply_helpful/controller_extensions' \ No newline at end of file diff --git a/vendor/plugins/simply_helpful/lib/simply_helpful/av_extensions.rb b/vendor/plugins/simply_helpful/lib/simply_helpful/av_extensions.rb deleted file mode 100644 index d4cd4f97..00000000 --- a/vendor/plugins/simply_helpful/lib/simply_helpful/av_extensions.rb +++ /dev/null @@ -1,26 +0,0 @@ -module ActionView - module Partials - def render_partial_with_record_identification(partial_path, local_assigns = nil, deprecated_local_assigns = nil) - if partial_path.is_a?(String) || partial_path.is_a?(Symbol) || partial_path.nil? - render_partial_without_record_identification( - partial_path, local_assigns, deprecated_local_assigns - ) - elsif partial_path.is_a?(Array) - if partial_path.any? - path = SimplyHelpful::RecordIdentifier.partial_path(partial_path.first) - collection = partial_path - render_partial_collection( - path, collection, nil, local_assigns.value - ) - else - "" - end - else - render_partial_without_record_identification( - SimplyHelpful::RecordIdentifier.partial_path(partial_path), local_assigns, deprecated_local_assigns - ) - end - end - alias_method_chain :render_partial, :record_identification - end -end diff --git a/vendor/plugins/simply_helpful/lib/simply_helpful/controller_extensions.rb b/vendor/plugins/simply_helpful/lib/simply_helpful/controller_extensions.rb deleted file mode 100644 index 5ce3c44f..00000000 --- a/vendor/plugins/simply_helpful/lib/simply_helpful/controller_extensions.rb +++ /dev/null @@ -1,42 +0,0 @@ -module SimplyHelpful - module ActionControllerExtensions - POLYMORPHIC_ROUTES = %w( - polymorphic_url polymorphic_path - edit_polymorphic_url edit_polymorphic_path - new_polymorphic_url new_polymorphic_path - formatted_polymorphic_url formatted_polymorphic_path - ) - - def self.included(base) - POLYMORPHIC_ROUTES.each { |route| base.helper_method(route) } - end - - POLYMORPHIC_ROUTES.each do |route| - module_eval <<-EOT - def #{route}(record) - SimplyHelpful::PolymorphicRoutes.#{route}(record, self) - end - EOT - end - - def redirect_to_with_record_identification(*args) - return redirect_to_without_record_identification *args unless args.size == 1 - - potential_object = args.first - - case potential_object - when String, Symbol, Hash - redirect_to_without_record_identification *args - else - redirect_to_without_record_identification SimplyHelpful::PolymorphicRoutes.polymorphic_url(potential_object, self) - end - end - end -end - -module ActionController - class Base - include SimplyHelpful::ActionControllerExtensions - alias_method_chain :redirect_to, :record_identification - end -end \ No newline at end of file diff --git a/vendor/plugins/simply_helpful/lib/simply_helpful/form_helper_extensions.rb b/vendor/plugins/simply_helpful/lib/simply_helpful/form_helper_extensions.rb deleted file mode 100644 index b284ab7b..00000000 --- a/vendor/plugins/simply_helpful/lib/simply_helpful/form_helper_extensions.rb +++ /dev/null @@ -1,48 +0,0 @@ -module ActionView - module Helpers - module FormHelper - def form_for_with_record_identification(name_or_object, *args, &proc) - form_method_with_record_identification :form_for, name_or_object, *args, &proc - end - - alias_method_chain :form_for, :record_identification - - protected - def form_method_with_record_identification(method_name, name_or_object, *args, &proc) - old_method_name = "#{method_name}_without_record_identification" - case name_or_object - when String, Symbol, NilClass - send(old_method_name, name_or_object, *args, &proc) - else - options = args.first || {} - - object_name = SimplyHelpful::RecordIdentifier.singular_class_name(name_or_object) - object = name_or_object - url = SimplyHelpful::PolymorphicRoutes.polymorphic_url(object, self) - - html_options = if object.new_record? - { :class => dom_class(object, :new), :id => dom_id(object), :method => :post } - else - { :class => dom_class(object, :edit), :id => dom_id(object, :edit), :method => :put } - end - - send(old_method_name, - object_name, object, options.merge({ :url => url, :html => html_options.update(options[:html] || {}) }), &proc - ) - end - end - end - end -end - -module ActionView - module Helpers - module PrototypeHelper - def remote_form_for_with_record_identification(name_or_object, *args, &proc) - form_method_with_record_identification :remote_form_for, name_or_object, *args, &proc - end - - alias_method_chain :remote_form_for, :record_identification - end - end -end diff --git a/vendor/plugins/simply_helpful/lib/simply_helpful/jsg_extensions.rb b/vendor/plugins/simply_helpful/lib/simply_helpful/jsg_extensions.rb deleted file mode 100644 index 6c9842a9..00000000 --- a/vendor/plugins/simply_helpful/lib/simply_helpful/jsg_extensions.rb +++ /dev/null @@ -1,18 +0,0 @@ -module ActionView - module Helpers - module PrototypeHelper - class JavaScriptGenerator - module GeneratorMethods - def [](id) - case id - when String, Symbol, NilClass - JavaScriptElementProxy.new(self, id) - else - JavaScriptElementProxy.new(self, SimplyHelpful::RecordIdentifier.dom_id(id)) - end - end - end - end - end - end -end \ No newline at end of file diff --git a/vendor/plugins/simply_helpful/lib/simply_helpful/polymorphic_routes.rb b/vendor/plugins/simply_helpful/lib/simply_helpful/polymorphic_routes.rb deleted file mode 100644 index 49cba920..00000000 --- a/vendor/plugins/simply_helpful/lib/simply_helpful/polymorphic_routes.rb +++ /dev/null @@ -1,52 +0,0 @@ -module SimplyHelpful - module PolymorphicRoutes - extend self - - def polymorphic_url(record_or_hash, url_writer, options = {}) - record = extract_record(record_or_hash) - - case - when options[:action] == "new" - url_writer.send(action_prefix(options) + RecordIdentifier.singular_class_name(record) + routing_type(options)) - - when record.new_record? - url_writer.send(RecordIdentifier.plural_class_name(record) + routing_type(options)) - - else - url_writer.send( - action_prefix(options) + RecordIdentifier.singular_class_name(record) + routing_type(options), record_or_hash - ) - end - end - - def polymorphic_path(record_or_hash, url_writer) - polymorphic_url(record_or_hash, url_writer, :routing_type => :path) - end - - %w( edit new formatted ).each do |action| - module_eval <<-EOT - def #{action}_polymorphic_url(record_or_hash, url_writer) - polymorphic_url(record_or_hash, url_writer, :action => "#{action}") - end - - def #{action}_polymorphic_path(record_or_hash, url_writer) - polymorphic_url(record_or_hash, url_writer, :action => "#{action}", :routing_type => :path) - end - EOT - end - - - private - def action_prefix(options) - options[:action] ? "#{options[:action]}_" : "" - end - - def routing_type(options) - "_#{options[:routing_type] || "url"}" - end - - def extract_record(record_or_hash) - record_or_hash.is_a?(Hash) ? record_or_hash[:id] : record_or_hash - end - end -end diff --git a/vendor/plugins/simply_helpful/lib/simply_helpful/record_identification_helper.rb b/vendor/plugins/simply_helpful/lib/simply_helpful/record_identification_helper.rb deleted file mode 100644 index 49178478..00000000 --- a/vendor/plugins/simply_helpful/lib/simply_helpful/record_identification_helper.rb +++ /dev/null @@ -1,16 +0,0 @@ -module SimplyHelpful - module RecordIdentificationHelper - protected - def partial_path(*args, &block) - RecordIdentifier.partial_path(*args, &block) - end - - def dom_class(*args, &block) - RecordIdentifier.dom_class(*args, &block) - end - - def dom_id(*args, &block) - RecordIdentifier.dom_id(*args, &block) - end - end -end diff --git a/vendor/plugins/simply_helpful/lib/simply_helpful/record_identifier.rb b/vendor/plugins/simply_helpful/lib/simply_helpful/record_identifier.rb deleted file mode 100644 index d50b4bad..00000000 --- a/vendor/plugins/simply_helpful/lib/simply_helpful/record_identifier.rb +++ /dev/null @@ -1,32 +0,0 @@ -module SimplyHelpful - module RecordIdentifier - extend self - - def partial_path(record_or_class) - klass = class_from_record_or_class(record_or_class) - "#{klass.name.tableize}/#{klass.name.demodulize.underscore}" - end - - def dom_class(record_or_class, prefix = nil) - [ prefix, singular_class_name(record_or_class) ].compact * '_' - end - - def dom_id(record, prefix = nil) - prefix ||= 'new' unless record.id - [ prefix, singular_class_name(record), record.id ].compact * '_' - end - - def plural_class_name(record_or_class) - singular_class_name(record_or_class).pluralize - end - - def singular_class_name(record_or_class) - class_from_record_or_class(record_or_class).name.underscore.tr('/', '_') - end - - private - def class_from_record_or_class(record_or_class) - record_or_class.is_a?(Class) ? record_or_class : record_or_class.class - end - end -end diff --git a/vendor/plugins/simply_helpful/lib/simply_helpful/record_tag_helper.rb b/vendor/plugins/simply_helpful/lib/simply_helpful/record_tag_helper.rb deleted file mode 100644 index 1352053f..00000000 --- a/vendor/plugins/simply_helpful/lib/simply_helpful/record_tag_helper.rb +++ /dev/null @@ -1,76 +0,0 @@ -module SimplyHelpful - module RecordTagHelper - # Produces a wrapper DIV element with id and class parameters that - # relate to the specified ActiveRecord object. Usage example: - # - # <% div_for(@person, :class => "foo") do %> - # <%=h @person.name %> - # <% end %> - # - # produces: - # - #
Joe Bloggs
- # - def div_for(record, *args, &block) - content_tag_for(:div, record, *args, &block) - end - - # content_tag_for creates an HTML element with id and class parameters - # that relate to the specified ActiveRecord object. For example: - # - # <% content_tag_for(:tr, @person) do %> - # <%=h @person.first_name %> - # <%=h @person.last_name %> - # <% end %> - # - # would produce hthe following HTML (assuming @person is an instance of - # a Person object, with an id value of 123): - # - # .... - # - # If you require the HTML id attribute to have a prefix, you can specify it: - # - # <% content_tag_for(:tr, @person, :foo) do %> ... - # - # produces: - # - # ... - # - # content_tag_for also accepts a hash of options, which will be converted to - # additional HTML attributes. If you specify a +:class+ value, it will be combined - # with the default class name for your object. For example: - # - # <% content_tag_for(:li, @person, :class => "bar") %>... - # - # produces: - # - #
  • ... - # - def content_tag_for(tag_name, record, *args, &block) - prefix = args.first.is_a?(Hash) ? nil : args.shift - options = args.first.is_a?(Hash) ? args.shift : {} - concat content_tag(tag_name, capture(&block), - options.merge({ :class => "#{dom_class(record)} #{options[:class]}".strip, :id => dom_id(record, prefix) })), - block.binding - end - end -end - -module ActionView - module Helpers - module UrlHelper - def link_to_with_record_identification(attr_name, record = {}, html_options = nil, *parameters_for_method_reference) - case record - when Hash, String, Symbol, NilClass - link_to_without_record_identification(attr_name, record, html_options, *parameters_for_method_reference) - else - url = SimplyHelpful::PolymorphicRoutes.polymorphic_url(record, self) - link_text = record.respond_to?(attr_name) ? record.send(attr_name) : attr_name - link_to_without_record_identification(link_text, url, html_options, *parameters_for_method_reference) - end - end - - alias_method_chain :link_to, :record_identification - end - end -end \ No newline at end of file diff --git a/vendor/plugins/simply_helpful/test/controller_extensions_test.rb b/vendor/plugins/simply_helpful/test/controller_extensions_test.rb deleted file mode 100644 index a1a4607c..00000000 --- a/vendor/plugins/simply_helpful/test/controller_extensions_test.rb +++ /dev/null @@ -1,52 +0,0 @@ -require File.dirname(__FILE__) + '/test_helper' -require 'ostruct' - -class RedirectionTestingController < ActionController::Base - class MockResponse - attr_accessor :redirected_to - - def redirect(_) - end - - end - - def initialize - super - @response = MockResponse.new - @request = OpenStruct.new - @request.protocol= "http://" - @request.host_with_port= "www.example.com" - end - - def response - @response - end - - def request - @request - end - - def post_url(p) - "/posts/#{p.id}" - end - - -end - -class ControllerExtensionsTest < Test::Unit::TestCase - def setup - @record = Post.new - @record.save - @controller = RedirectionTestingController.new - end - - def test_redirect_to_record - @controller.send :redirect_to, @record - assert_equal "http://www.example.com/posts/1", @controller.response.redirected_to - end - - def test_redirect_to_string - @controller.send :redirect_to, "http://www.yahoo.com" - assert_equal "http://www.yahoo.com", @controller.response.redirected_to - end -end \ No newline at end of file diff --git a/vendor/plugins/simply_helpful/test/form_helper_extensions_test.rb b/vendor/plugins/simply_helpful/test/form_helper_extensions_test.rb deleted file mode 100644 index 3e1fa944..00000000 --- a/vendor/plugins/simply_helpful/test/form_helper_extensions_test.rb +++ /dev/null @@ -1,96 +0,0 @@ -require File.dirname(__FILE__) + '/test_helper' - -class LabelledFormBuilder < ActionView::Helpers::FormBuilder - (field_helpers - %w(hidden_field)).each do |selector| - src = <<-END_SRC - def #{selector}(field, *args, &proc) - " " + super + "
    " - end - END_SRC - class_eval src, __FILE__, __LINE__ - end -end - -class FormHelperExtensionsTest < Test::Unit::TestCase - include ActionView::Helpers::FormHelper - include ActionView::Helpers::FormTagHelper - include ActionView::Helpers::PrototypeHelper - include ActionView::Helpers::UrlHelper - include ActionView::Helpers::TagHelper - include ActionView::Helpers::TextHelper - include SimplyHelpful::RecordIdentificationHelper - - def setup - @record = Post.new - @controller = Class.new do - attr_reader :url_for_options - def url_for(options, *parameters_for_method_reference) - @url_for_options = options - @url_for_options || "http://www.example.com" - end - end - @controller = @controller.new - end - - def test_form_for_with_record_identification_with_new_record - _erbout = '' - form_for(@record, {:html => { :id => 'create-post' }}) {} - - expected = "
    " - assert_dom_equal expected, _erbout - end - def test_form_for_with_record_identification_with_custom_builder - _erbout = '' - form_for(@record, :builder => LabelledFormBuilder) do |f| - _erbout.concat(f.text_field(:name)) - end - - expected = "
    " + - "" + - "
    " + - "
    " - assert_dom_equal expected, _erbout - end - - def test_form_for_with_record_identification_without_html_options - _erbout = '' - form_for(@record) {} - - expected = "
    " - assert_dom_equal expected, _erbout - end - - def test_form_for_with_record_identification_with_existing_record - @record.save - _erbout = '' - form_for(@record) {} - - expected = "
    " - assert_dom_equal expected, _erbout - end - - def test_remote_form_for_with_record_identification_with_new_record - _erbout = '' - remote_form_for(@record, {:html => { :id => 'create-post' }}) {} - - expected = %(
    ) - assert_dom_equal expected, _erbout - end - - def test_remote_form_for_with_record_identification_without_html_options - _erbout = '' - remote_form_for(@record) {} - - expected = %(
    ) - assert_dom_equal expected, _erbout - end - - def test_remote_form_for_with_record_identification_with_existing_record - @record.save - _erbout = '' - remote_form_for(@record) {} - - expected = %(
    ) - assert_dom_equal expected, _erbout - end -end \ No newline at end of file diff --git a/vendor/plugins/simply_helpful/test/record_identifier_test.rb b/vendor/plugins/simply_helpful/test/record_identifier_test.rb deleted file mode 100644 index 902e58bd..00000000 --- a/vendor/plugins/simply_helpful/test/record_identifier_test.rb +++ /dev/null @@ -1,80 +0,0 @@ -require File.dirname(__FILE__) + '/test_helper' - -class RecordIdentifierTest < Test::Unit::TestCase - include SimplyHelpful - - def setup - @klass = Post - @record = @klass.new - @singular = 'post' - @plural = 'posts' - end - - def test_dom_id_with_new_record - assert_equal "new_#{@singular}", dom_id(@record) - end - - def test_dom_id_with_new_record_and_prefix - assert_equal "custom_prefix_#{@singular}", dom_id(@record, :custom_prefix) - end - - def test_dom_id_with_saved_record - @record.save - assert_equal "#{@singular}_1", dom_id(@record) - end - - def test_dom_id_with_prefix - @record.save - assert_equal "edit_#{@singular}_1", dom_id(@record, :edit) - end - - def test_partial_path - expected = "#{@plural}/#{@singular}" - assert_equal expected, partial_path(@record) - assert_equal expected, partial_path(Post) - end - - def test_dom_class - assert_equal @singular, dom_class(@record) - end - - def test_dom_class_with_prefix - assert_equal "custom_prefix_#{@singular}", dom_class(@record, :custom_prefix) - end - - def test_singular_class_name - assert_equal @singular, singular_class_name(@record) - end - - def test_singular_class_name_for_class - assert_equal @singular, singular_class_name(@klass) - end - - def test_plural_class_name - assert_equal @plural, plural_class_name(@record) - end - - def test_plural_class_name_for_class - assert_equal @plural, plural_class_name(@klass) - end - - private - def method_missing(method, *args) - RecordIdentifier.send(method, *args) - end -end - -class NestedRecordIdentifierTest < RecordIdentifierTest - def setup - @klass = Post::Nested - @record = @klass.new - @singular = 'post_nested' - @plural = 'post_nesteds' - end - - def test_partial_path - expected = "post/nesteds/nested" - assert_equal expected, partial_path(@record) - assert_equal expected, partial_path(Post::Nested) - end -end \ No newline at end of file diff --git a/vendor/plugins/simply_helpful/test/record_tag_helper_test.rb b/vendor/plugins/simply_helpful/test/record_tag_helper_test.rb deleted file mode 100644 index 0ac38dd7..00000000 --- a/vendor/plugins/simply_helpful/test/record_tag_helper_test.rb +++ /dev/null @@ -1,133 +0,0 @@ -require File.dirname(__FILE__) + '/test_helper' - -class RecordTagHelperTest < Test::Unit::TestCase - include ActionView::Helpers::UrlHelper - include ActionView::Helpers::TagHelper - include ActionView::Helpers::CaptureHelper - include ActionView::Helpers::TextHelper - include SimplyHelpful::RecordTagHelper - include SimplyHelpful::RecordIdentificationHelper - - def setup - @record = Post.new - end - - def test_content_tag_for_with_new_record - _erbout = '' - content_tag_for(:li, @record) {} - - expected = "
  • " - assert_dom_equal expected, _erbout - end - - def test_content_tag_for_with_existing_record - @record.save - _erbout = '' - content_tag_for(:li, @record) {} - - expected = "
  • " - assert_dom_equal expected, _erbout - end - - def test_content_tag_for_merges_given_class_names - _erbout = '' - content_tag_for(:li, @record, :class => 'foo') {} - - expected = "
  • " - assert_dom_equal expected, _erbout - - _erbout = '' - content_tag_for(:li, @record, :class => 'foo bar') {} - - expected = "
  • " - assert_dom_equal expected, _erbout - end - - def test_content_tag_for_with_dom_id_prefix_on_new_record - _erbout = '' - content_tag_for(:li, @record, :foo, :class => 'foo') {} - - expected = "
  • " - assert_dom_equal expected, _erbout - end - - def test_content_tag_for_with_dom_id_prefix_on_existing_record - @record.save - _erbout = '' - content_tag_for(:li, @record, :foo, :class => 'foo') {} - - expected = "
  • " - assert_dom_equal expected, _erbout - end - - def test_div_for_with_new_record - _erbout = '' - div_for(@record) {} - - expected = "
    " - assert_dom_equal expected, _erbout - end - - def test_div_for_with_existing_record - @record.save - _erbout = '' - div_for(@record) {} - - expected = "
    " - assert_dom_equal expected, _erbout - end - - def test_div_for_merges_given_class_names - _erbout = '' - div_for(@record, :class => 'foo') {} - - expected = "
    " - assert_dom_equal expected, _erbout - - _erbout = '' - div_for(@record, :class => 'foo bar') {} - - expected = "
    " - assert_dom_equal expected, _erbout - end - - def test_div_for_with_dom_id_prefix_on_new_record - _erbout = '' - div_for(@record, :foo, :class => 'foo') {} - - expected = "
    " - assert_dom_equal expected, _erbout - end - - def test_div_for_with_dom_id_prefix_on_existing_record - @record.save - _erbout = '' - div_for(@record, :foo, :class => 'foo') {} - - expected = "
    " - assert_dom_equal expected, _erbout - end - - def test_link_to_with_new_record - actual = link_to :name, @record - - expected = "new post" - assert_dom_equal expected, actual - end - - def test_link_to_with_existing_record - @record.save - actual = link_to :name, @record - - expected = "post #1" - assert_dom_equal expected, actual - end - - def test_link_to_with_an_existing_method_and_constant_text - @record.save - actual = link_to "Cancel Editing", @record - - expected = "Cancel Editing" - assert_dom_equal expected, actual - end -end \ No newline at end of file diff --git a/vendor/plugins/simply_helpful/test/simply_helpful_test.rb b/vendor/plugins/simply_helpful/test/simply_helpful_test.rb deleted file mode 100644 index d202d3e7..00000000 --- a/vendor/plugins/simply_helpful/test/simply_helpful_test.rb +++ /dev/null @@ -1,6 +0,0 @@ -require File.dirname(__FILE__) + '/test_helper' - -class SimplyHelpfulTest < Test::Unit::TestCase - def default_test - end -end diff --git a/vendor/plugins/simply_helpful/test/test_helper.rb b/vendor/plugins/simply_helpful/test/test_helper.rb deleted file mode 100644 index c0888078..00000000 --- a/vendor/plugins/simply_helpful/test/test_helper.rb +++ /dev/null @@ -1,25 +0,0 @@ -RAILS_ENV = 'test' -require File.expand_path(File.join(File.dirname(__FILE__), '../../../../config/environment.rb')) -require 'action_controller/test_process' -require 'breakpoint' - -class Post - attr_reader :id - def save; @id = 1 end - def new_record?; @id.nil? end - def name - @id.nil? ? 'new post' : "post ##{@id}" - end - class Nested < Post; end -end - -class Test::Unit::TestCase - protected - def posts_url - 'http://www.example.com/posts' - end - - def post_url(post) - "http://www.example.com/posts/#{post.id}" - end -end \ No newline at end of file