mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
1d15d5f080
* Other ruby implementations use the spec/ruby directory. [Misc #13792] [ruby-core:82287] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@59979 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
40 lines
993 B
Ruby
40 lines
993 B
Ruby
describe :syslog_reopen, shared: true 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 "reopens the log" do
|
|
Syslog.open
|
|
lambda { Syslog.send(@method)}.should_not raise_error
|
|
Syslog.opened?.should be_true
|
|
Syslog.close
|
|
end
|
|
|
|
it "fails with RuntimeError if the log is closed" do
|
|
lambda { Syslog.send(@method)}.should raise_error(RuntimeError)
|
|
end
|
|
|
|
it "receives the same parameters as Syslog.open" do
|
|
Syslog.open
|
|
Syslog.send(@method, "rubyspec", 3, 8) do |s|
|
|
s.should == Syslog
|
|
s.ident.should == "rubyspec"
|
|
s.options.should == 3
|
|
s.facility.should == Syslog::LOG_USER
|
|
s.opened?.should be_true
|
|
end
|
|
Syslog.opened?.should be_false
|
|
end
|
|
|
|
it "returns the module" do
|
|
Syslog.open
|
|
Syslog.send(@method).should == Syslog
|
|
Syslog.close
|
|
end
|
|
end
|
|
end
|