gitlab-org--gitlab-foss/spec/support/matchers/be_utf8.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
232 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2017-06-28 11:44:37 -04:00
RSpec::Matchers.define :be_utf8 do |_|
match do |actual|
actual.is_a?(String) && actual.encoding == Encoding.find('UTF-8')
end
description do
"be a String with encoding UTF-8"
end
end