Sha256: adc5c03f29db8b48742d29ddc80d0bb292359b24a0e73a0a15c87faf9efcccb9

Contents?: true

Size: 1.33 KB

Versions: 13

Compression:

Stored size: 1.33 KB

Contents

#!/usr/bin/env ruby
#
# Copyright (C) 2016  Kouhei Sutou <kou@clear-code.com>
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA

require "rbconfig"

success = true

unless system(RbConfig.ruby, "test/unit/run-test.rb", *ARGV)
  success = false
end

Dir.glob("#{__dir__}/apps/*") do |test_application|
  env = {
    "BUNDLE_GEMFILE" => "#{test_application}/Gemfile",
  }
  command_line = [
    "bundle",
    "exec",
    RbConfig.ruby,
    "bin/rails",
    "test",
  ]
  unless ARGV.empty?
    command_line << "TESTOPTS=#{ARGV.join(' ')}"
  end
  options = {
    :chdir => test_application,
  }
  unless system(env, *command_line, options)
    success = false
  end
end

exit(success)

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
groonga-client-model-1.0.2 test/run-test.rb
groonga-client-model-1.0.1 test/run-test.rb
groonga-client-model-1.0.0 test/run-test.rb
groonga-client-model-0.9.9 test/run-test.rb
groonga-client-model-0.9.8 test/run-test.rb
groonga-client-model-0.9.7 test/run-test.rb
groonga-client-model-0.9.6 test/run-test.rb
groonga-client-model-0.9.5 test/run-test.rb
groonga-client-model-0.9.4 test/run-test.rb
groonga-client-model-0.9.3 test/run-test.rb
groonga-client-model-0.9.2 test/run-test.rb
groonga-client-model-0.9.1 test/run-test.rb
groonga-client-model-0.9.0 test/run-test.rb