Sha256: 9ef17523ac7ee3528b8521300866edf91ee0f108ae4e25147b726c4c61fc1612
Contents?: true
Size: 525 Bytes
Versions: 18
Compression:
Stored size: 525 Bytes
Contents
# frozen_string_literal: true # encoding: utf-8 require 'spec_helper' describe 'truncated UTF-8 in server error messages' do let(:rep) do '(╯°□°)╯︵ ┻━┻' end let(:collection) do authorized_client['truncated_utf8'] end before(:all) do ClientRegistry.instance.global_client('authorized')['truncated_utf8'].indexes.create_one( {k: 1}, unique: true) end it 'works' do pending 'RUBY-2560' collection.insert_one(k: rep*20) collection.insert_one(k: rep*20) end end
Version data entries
18 entries across 18 versions & 1 rubygems