Ruby - Testing with RSpec and Minitest
Find the error in this RSpec test:
describe 'Hash test' do
it 'checks key presence' do
expect({a: 1, b: 2}).to include(:c)
end
end