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

describe "main#to_s" do
  it "returns 'main'" do
    eval('to_s', TOPLEVEL_BINDING).should == "main"
  end
end