mirror of
https://github.com/heartcombo/devise.git
synced 2022-11-09 12:18:31 -05:00
14 lines
269 B
Text
14 lines
269 B
Text
|
#!/usr/bin/env ruby
|
||
|
$: << File.expand_path(File.expand_path('../../test', __FILE__))
|
||
|
|
||
|
require 'bundler/setup'
|
||
|
begin
|
||
|
require 'rails/test_unit/minitest_plugin'
|
||
|
rescue LoadError
|
||
|
exec 'rake'
|
||
|
end
|
||
|
|
||
|
Rails::TestUnitReporter.executable = 'bin/test'
|
||
|
|
||
|
exit Minitest.run(ARGV)
|