Skip to content

Instantly share code, notes, and snippets.

@pdabrowski6
Created January 12, 2018 12:55
Show Gist options
  • Save pdabrowski6/a2f96035240ee9ebe21a107f168239f6 to your computer and use it in GitHub Desktop.
Save pdabrowski6/a2f96035240ee9ebe21a107f168239f6 to your computer and use it in GitHub Desktop.
describe NumberService do
describe '#number' do
it 'returns 12' do
expect(NumberService.new.number).to eq(12)
end
it 'does not return 10' do
expect(NumberService.new.number).not_to eq(10)
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment