mirror of
https://github.com/heartcombo/devise.git
synced 2022-11-09 12:18:31 -05:00
13 lines
269 B
Ruby
Executable file
13 lines
269 B
Ruby
Executable file
#!/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)
|