Skip to content

Instantly share code, notes, and snippets.

@marzdgzmn
Created December 12, 2018 12:37
Show Gist options
  • Save marzdgzmn/a4ecd1abdf985d300147d7d4848feeed to your computer and use it in GitHub Desktop.
Save marzdgzmn/a4ecd1abdf985d300147d7d4848feeed to your computer and use it in GitHub Desktop.
describe Foo::Bar do
let(:base_obj) { OpenStruct.new(name: 'blahblah') }
it 'test1' do
end
context 'inner context' do
let(:extended_base_obj) { base_obj.dup }
extended_base_obj.name = 'changedValue'
it 'test2' do
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment