aboutsummaryrefslogtreecommitdiffstats
path: root/test/test_syslog.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_syslog.rb')
-rw-r--r--test/test_syslog.rb9
1 files changed, 7 insertions, 2 deletions
diff --git a/test/test_syslog.rb b/test/test_syslog.rb
index e9fc375c90..fe865bdd18 100644
--- a/test/test_syslog.rb
+++ b/test/test_syslog.rb
@@ -6,7 +6,12 @@
# If in doubt, ask your admin.
require 'test/unit'
-require 'syslog'
+
+begin
+ require 'syslog'
+rescue LoadError
+ # suppress error messages.
+end
class TestSyslog < Test::Unit::TestCase
def test_new
@@ -159,4 +164,4 @@ class TestSyslog < Test::Unit::TestCase
assert_equal(format('<#%s: opened=false>', Syslog), Syslog.inspect)
end
-end
+end if defined?(Syslog)