From b2ddc9ffa9fdc880ca301817d59277343005fd5d Mon Sep 17 00:00:00 2001 From: Azul Date: Fri, 16 Sep 2016 12:56:13 +0200 Subject: bugfix: load order issue in server, include test Includes our first functional test. This one only makes sure loading the bin/nickserver actually works fine. Enough to catch this bug. --- test/functional/bin_test.rb | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 test/functional/bin_test.rb (limited to 'test/functional/bin_test.rb') diff --git a/test/functional/bin_test.rb b/test/functional/bin_test.rb new file mode 100644 index 0000000..bc15e38 --- /dev/null +++ b/test/functional/bin_test.rb @@ -0,0 +1,24 @@ +require 'minitest/autorun' +require 'minitest/pride' +require 'minitest/hell' + +class BinTest < Minitest::Test + + def test_bin_loading + assert_command_runs("version") + assert_equal 0, $?.exitstatus + end + + protected + + def assert_command_runs(command) + out = `#{path_to_executable} #{command} 2>&1` + assert ($?.exitstatus == 0), + "failed to run 'nickserver #{command}':\n #{out}" + end + + def path_to_executable + File.expand_path(File.dirname(__FILE__) + '/../../bin/nickserver') + end + +end -- cgit v1.2.3