Sha256: cc95d5f3123c78a912f0520f3611c7156e8525c4475a85cfa347ee9411d5194d

Contents?: true

Size: 934 Bytes

Versions: 9

Compression:

Stored size: 934 Bytes

Contents

require 'test/unit'
require 'rubygems'

# gem install redgreen for colored test output
begin require 'redgreen'; rescue LoadError; end

require 'boot' unless defined?(ActiveRecord)

class Test::Unit::TestCase
  protected
  def assert_respond_to_all object, methods
    methods.each do |method|
      [method.to_s, method.to_sym].each { |m| assert_respond_to object, m }
    end
  end
  
  def collect_deprecations
    old_behavior = WillPaginate::Deprecation.behavior
    deprecations = []
    WillPaginate::Deprecation.behavior = Proc.new do |message, callstack|
      deprecations << message
    end
    result = yield
    [result, deprecations]
  ensure
    WillPaginate::Deprecation.behavior = old_behavior
  end
end

# Wrap tests that use Mocha and skip if unavailable.
def uses_mocha(test_name)
  require 'mocha'
rescue LoadError
  $stderr.puts "Skipping #{test_name} tests. `gem install mocha` and try again."
else
  yield
end

Version data entries

9 entries across 9 versions & 7 rubygems

Version Path
tism-will_paginate-2.3.16 test/helper.rb
Empact-will_paginate-2.3.15 test/helper.rb
will_paginate-2.3.15 test/helper.rb
will_paginate-2.3.14 test/helper.rb
jkaneacumen-will_paginate-2.3.12 test/helper.rb
djmaze-will_paginate-2.3.13 test/helper.rb
larsklevan-will_paginate-2.3.12 test/helper.rb
pb-will_paginate-2.3.12 test/helper.rb
will_paginate-2.3.12 test/helper.rb