X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/29c1bab0e6dcc0f4b302fb06c62a8bf0a35f875c..e70396d70bff53c19e917d303f5b9d8f2abb7a3b:/vendor/plugins/file_column/test/abstract_unit.rb diff --git a/vendor/plugins/file_column/test/abstract_unit.rb b/vendor/plugins/file_column/test/abstract_unit.rb deleted file mode 100644 index 22bc53b70..000000000 --- a/vendor/plugins/file_column/test/abstract_unit.rb +++ /dev/null @@ -1,63 +0,0 @@ -require 'test/unit' -require 'rubygems' -require 'active_support' -require 'active_record' -require 'action_view' -require File.dirname(__FILE__) + '/connection' -require 'stringio' - -RAILS_ROOT = File.dirname(__FILE__) -RAILS_ENV = "" - -$: << "../lib" - -require 'file_column' -require 'file_compat' -require 'validations' -require 'test_case' - -# do not use the file executable normally in our tests as -# it may not be present on the machine we are running on -FileColumn::ClassMethods::DEFAULT_OPTIONS = - FileColumn::ClassMethods::DEFAULT_OPTIONS.merge({:file_exec => nil}) - -class ActiveRecord::Base - include FileColumn - include FileColumn::Validations -end - - -class RequestMock - attr_accessor :relative_url_root - - def initialize - @relative_url_root = "" - end -end - -class Test::Unit::TestCase - - def assert_equal_paths(expected_path, path) - assert_equal normalize_path(expected_path), normalize_path(path) - end - - - private - - def normalize_path(path) - Pathname.new(path).realpath - end - - def clear_validations - [:validate, :validate_on_create, :validate_on_update].each do |attr| - Entry.write_inheritable_attribute attr, [] - Movie.write_inheritable_attribute attr, [] - end - end - - def file_path(filename) - File.expand_path("#{File.dirname(__FILE__)}/fixtures/#{filename}") - end - - alias_method :f, :file_path -end