Sha256: 851e372a9a74faf5569730f020cc9584922b33bb97b35720541f7fa228328a45

Contents?: true

Size: 1.06 KB

Versions: 3

Compression:

Stored size: 1.06 KB

Contents

#!/usr/bin/env ruby
#
# Copyright (C) 2015  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 3 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, see <http://www.gnu.org/licenses/>.

# $VERBOSE = true

base_dir = File.expand_path(File.join(File.dirname(__FILE__), ".."))
lib_dir = File.join(base_dir, "lib")
test_dir = File.join(base_dir, "test")

require "test-unit"

$LOAD_PATH.unshift(lib_dir)

ENV["TZ"] = "Asia/Tokyo"
ENV["TEST_UNIT_MAX_DIFF_TARGET_STRING_SIZE"] ||= "5000"

exit(Test::Unit::AutoRunner.run(true, test_dir))

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
fluent-plugin-groonga-query-log-1.0.2 test/run-test.rb
fluent-plugin-groonga-query-log-1.0.1 test/run-test.rb
fluent-plugin-groonga-query-log-1.0.0 test/run-test.rb