summaryrefslogtreecommitdiff
path: root/test/test_helper.rb
blob: a06f7103ae7ad9116b774fbf44d0040f2e8ee8c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
ENV["RAILS_ENV"] = "test"
require_relative '../config/environment'
require 'rails/test_help'

require 'mocha/setup'

# Load support files from toplevel
Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }

# Load support files from all engines
Dir["#{File.dirname(__FILE__)}/../engines/*/test/support/**/*.rb"].each { |f| require f }

class ActiveSupport::TestCase
  # Add more helper methods to be used by all tests here...

  protected

  def logfile_path
    Rails.root + 'tmp' + "#{self.class.name.underscore}.#{name}.log"
  end

  def screenshot_path
    Rails.root + 'tmp' + "#{self.class.name.underscore}.#{name}.png"
  end

  def file_path(name)
    File.join(Rails.root, 'test', 'files', name)
  end

  require 'i18n/missing_translations'
  at_exit { I18n.missing_translations.dump }
end

#
# Create databases, since the temporary databases might not have been created
# when `rake couchrest:migrate` was run.
#

Token.create_database! if Token.respond_to?(:create_database)
CouchRest::Session::Document.create_database! if CouchRest::Session::Document.respond_to?(:create_database)
User.create_tmp_database! if User.respond_to?(:create_tmp_database)