Sha256: 68325389fdaea722a65f0918d80a2691eb259fdb57662abc49d8e766a2f8b447

Contents?: true

Size: 1.13 KB

Versions: 8

Compression:

Stored size: 1.13 KB

Contents

#!/usr/bin/env ruby
#
# run-test.rb
#
# Copyright (C) 2013-2015  Masafumi Yokoyama <myokoym@gmail.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 "test-unit"
require "test/unit/notify"
require "test/unit/rr"

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

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

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
feedcellar-web-0.4.3 test/run-test.rb
feedcellar-web-0.4.2 test/run-test.rb
feedcellar-web-0.4.1 test/run-test.rb
feedcellar-web-0.4.0 test/run-test.rb
feedcellar-web-0.3.1 test/run-test.rb
feedcellar-web-0.3.0 test/run-test.rb
feedcellar-web-0.2.0 test/run-test.rb
feedcellar-web-0.1.0 test/run-test.rb