Sha256: d75096272f808a5fd4e2e027e316836b12b8896e1910840b11cf83ca529cc594
Contents?: true
Size: 517 Bytes
Versions: 14
Compression:
Stored size: 517 Bytes
Contents
require File.expand_path(File.dirname(__FILE__) + '/test_helper') class CombinedTest < Test::Unit::TestCase include RubyProf::Test class Test aspector do before :test, :before_test after :test, :after_test around :test, :around_test end def test_no_aspect; end def test; end def before_test; end def after_test result; end def around_test &block block.call end end def test_combined o = Test.new o.test_no_aspect o.test end end
Version data entries
14 entries across 14 versions & 1 rubygems