ruby--ruby/spec/ruby/core/random/default_spec.rb

8 lines
189 B
Ruby

require File.expand_path('../../../spec_helper', __FILE__)
describe "Random::DEFAULT" do
it "returns a Random instance" do
Random::DEFAULT.should be_an_instance_of(Random)
end
end