Sha256: 1fe2abc33e523c543582a3e2e124842f655a68f4d8f8a3ce09737ead40c8d1f0
Contents?: true
Size: 259 Bytes
Versions: 52
Compression:
Stored size: 259 Bytes
Contents
require File.expand_path('../../../spec_helper', __FILE__) describe "ENV.to_hash" do it "returns the ENV as a hash" do ENV["foo"] = "bar" h = ENV.to_hash h.is_a?(Hash).should == true h["foo"].should == "bar" ENV.delete "foo" end end
Version data entries
52 entries across 52 versions & 2 rubygems