debian-mirror-gitlab/spec/support/matchers/be_utf8.rb
2019-10-12 21:52:04 +05:30

12 lines
232 B
Ruby

# frozen_string_literal: true
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