📄 test_helper.rb
字号:
ENV["RAILS_ENV"] = "test"
require File.expand_path(File.dirname(__FILE__) + '/../../../../config/environment')
require 'logger'
require 'test_help'
plugin_path = RAILS_ROOT + "/vendor/plugins/globalize"
config_location = plugin_path + "/test/config/database.yml"
config = YAML::load(ERB.new(IO.read(config_location)).result)
ActiveRecord::Base.logger = Logger.new(plugin_path + "/test/log/test.log")
ActiveRecord::Base.establish_connection(config['test'])
schema_file = plugin_path + "/test/db/schema.rb"
load(schema_file) if File.exist?(schema_file)
Test::Unit::TestCase.fixture_path = plugin_path + "/test/fixtures/"
$LOAD_PATH.unshift(Test::Unit::TestCase.fixture_path)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -