以下のRSpecコードを実行した場合の結果はどうなりますか? ```ruby RSpec.describe '計算機' do it '2足す2は5になる' do expect(2 + 2).to eq(5) end end ```