Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save yujinakayama/5797529 to your computer and use it in GitHub Desktop.
Save yujinakayama/5797529 to your computer and use it in GitHub Desktop.
describe 'File.stub(:open).and_call_original' do
context 'with Rubinius 2.0.0.rc1 (1.9.3 a46dcf9b) and RSpec 2.13.1' do
it 'raises SystemStackError' do
File.write('file.txt', 'foo')
File.stub(:open).and_call_original
File.open('file.txt') { |file| p file.read }
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment