summaryrefslogtreecommitdiff
path: root/spec/ruby/library/objectspace/trace_spec.rb
blob: 59952a006c32b3b6f61b411cae80953c15550964 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
require_relative '../../spec_helper'

ruby_version_is "3.1" do
  describe 'require "objspace/trace"' do
    it "shows object allocation sites" do
      file = fixture(__FILE__ , "trace.rb")
      ruby_exe(file, args: "2>&1").lines(chomp: true).should == [
        "objspace/trace is enabled",
        "\"foo\" @ #{file}:2",
        "\"bar\" @ #{file}:3",
        "42"
      ]
    end
  end
end