summaryrefslogtreecommitdiff
path: root/spec/ruby/core/env/to_s_spec.rb
blob: 0bd92cf2174f0bd534eb2c9d4b4e996824d8c57b (plain)
1
2
3
4
5
6
7
require_relative '../../spec_helper'

describe "ENV.to_s" do
  it "returns \"ENV\"" do
    ENV.to_s.should == "ENV"
  end
end