Skip to content

Instantly share code, notes, and snippets.

@pdabrowski6
Created January 12, 2018 15:33
Show Gist options
  • Save pdabrowski6/a0d5581d611353077087ebe94b04fcad to your computer and use it in GitHub Desktop.
Save pdabrowski6/a0d5581d611353077087ebe94b04fcad to your computer and use it in GitHub Desktop.
class Example
attr_reader :context_name
def initialize(context_name, &block)
@context_name = context_name
instance_eval &block
end
def expect(result)
self
end
def to(expectation)
self
end
def eq(expectation)
end
end
describe NumberService do
describe '#number' do
it 'returns 12' do
expect(NumberService.new.number).to eq(12)
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment