summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColby Swandale <hello@colby.fyi>2018-07-12 22:50:14 +1000
committerColby Swandale <hello@colby.fyi>2018-07-12 22:50:32 +1000
commit11bac37225abd3e0dee8e9ea18cf16d68d610a80 (patch)
tree548824e242b6264bd6055e1488d83f089a05ce21
parent7c9a6a79f9b8db04905b1e28d251a0c3b88e56aa (diff)
downloadbundler-11bac37225abd3e0dee8e9ea18cf16d68d610a80.tar.gz
skip test that relies on unicode literals on ruby < 2.0
-rw-r--r--spec/install/gemspecs_spec.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/spec/install/gemspecs_spec.rb b/spec/install/gemspecs_spec.rb
index 1e49c2a003..666707b295 100644
--- a/spec/install/gemspecs_spec.rb
+++ b/spec/install/gemspecs_spec.rb
@@ -1,3 +1,4 @@
+# encoding: utf-8
# frozen_string_literal: true
RSpec.describe "bundle install" do
@@ -64,7 +65,7 @@ RSpec.describe "bundle install" do
end
it "reads gemspecs respecting their encoding" do
- skip "unicode constants are most likely not supported on 1.8" if RUBY_VERSION < "1.9"
+ skip "Unicode is not supported on Ruby 1.x without extra work" if RUBY_VERSION < "2.0"
create_file "version.rb", <<-RUBY
module Persistent💎