HEX
Server: Apache
System: Linux s198.coreserver.jp 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC 2025 x86_64
User: nagasaki (10062)
PHP: 7.1.33
Disabled: NONE
Upload Files
File: //usr/local/rvm/src/ruby-2.6.8/spec/ruby/library/syslog/ident_spec.rb
require_relative '../../spec_helper'

platform_is_not :windows do
  require 'syslog'

  describe "Syslog.ident" do
    platform_is_not :windows do

      before :each do
        Syslog.opened?.should be_false
      end

      after :each do
        Syslog.opened?.should be_false
      end

      it "returns the logging identity" do
        Syslog.open("rubyspec")
        Syslog.ident.should == "rubyspec"
        Syslog.close
      end

      it "returns nil if the log is closed" do
        Syslog.opened?.should == false
        Syslog.ident.should == nil
      end

      it "defaults to $0" do
        Syslog.open
        Syslog.ident.should == $0
        Syslog.close
      end
    end
  end
end