diff options
Diffstat (limited to 'spec/ruby/library/socket/constants')
-rw-r--r-- | spec/ruby/library/socket/constants/constants_spec.rb | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/spec/ruby/library/socket/constants/constants_spec.rb b/spec/ruby/library/socket/constants/constants_spec.rb index 7e87aff2ee..2d44636abd 100644 --- a/spec/ruby/library/socket/constants/constants_spec.rb +++ b/spec/ruby/library/socket/constants/constants_spec.rb @@ -1,6 +1,5 @@ -require_relative '../../../spec_helper' +require_relative '../spec_helper' require_relative '../fixtures/classes' -include Socket::Constants describe "Socket::Constants" do it "defines socket types" do @@ -87,4 +86,17 @@ describe "Socket::Constants" do Socket::Constants.should have_constant(c) end end + + platform_is_not :windows do + it 'defines SCM options' do + Socket::Constants.should have_constant('SCM_CREDENTIALS') + end + + it 'defines error options' do + consts = ["EAI_ADDRFAMILY", "EAI_NODATA"] + consts.each do |c| + Socket::Constants.should have_constant(c) + end + end + end end |