summaryrefslogtreecommitdiff
path: root/spec/ruby/library/socket/socket/gethostname_spec.rb
blob: 4b79747b2721e5f402b572177a41ebc1891d7570 (plain)
1
2
3
4
5
6
7
8
require_relative '../spec_helper'
require_relative '../fixtures/classes'

describe "Socket.gethostname" do
  it "returns the host name" do
    Socket.gethostname.should == `hostname`.strip
  end
end