Skip to content

Instantly share code, notes, and snippets.

@shibason
shibason / rspec_sample.rb
Created July 31, 2010 16:43
RSpec sample: Stubbing a Kernel method in a constructor
# Stubbing a Kernel method in a constructor
class Sample
def initialize
puts 'Hello world!'
end
end
describe Sample do
it '#initialize call puts' do