Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacob Vosmaer <jacob@gitlab.com>2017-06-28 18:44:37 +0300
committerJacob Vosmaer <jacob@gitlab.com>2017-06-30 15:32:42 +0300
commit8a62f304ef541b93ac47dab3b69b645f2b65537a (patch)
tree63c5f9f2f610962e0afc192fb45f307b8213aaae /spec/support/matchers
parent7648f113814a78ffde802172197ba2b0074ec753 (diff)
Add a UTF-8 encoding matcher
Diffstat (limited to 'spec/support/matchers')
-rw-r--r--spec/support/matchers/be_utf8.rb9
1 files changed, 9 insertions, 0 deletions
diff --git a/spec/support/matchers/be_utf8.rb b/spec/support/matchers/be_utf8.rb
new file mode 100644
index 00000000000..ea806352422
--- /dev/null
+++ b/spec/support/matchers/be_utf8.rb
@@ -0,0 +1,9 @@
+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