summaryrefslogtreecommitdiff
path: root/spec
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-10-09 06:18:28 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-10-09 06:18:28 +0000
commite94ede5a85f98c353f3e9f6a6d78d870237a98ad (patch)
treebf3e25a55880937385df7455f7adf815a12b88ef /spec
parent7f9089a1864f3381fae8e7a08b9c225c4e4ed34a (diff)
use `should include`.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@64976 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'spec')
-rw-r--r--spec/ruby/command_line/dash_v_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/ruby/command_line/dash_v_spec.rb b/spec/ruby/command_line/dash_v_spec.rb
index 995a46a87f..04d684fdad 100644
--- a/spec/ruby/command_line/dash_v_spec.rb
+++ b/spec/ruby/command_line/dash_v_spec.rb
@@ -6,7 +6,7 @@ describe "The -v command line option" do
describe "when used alone" do
it "prints version and ends" do
- ruby_exe(nil, args: '-v').include?(RUBY_DESCRIPTION).should == true
+ ruby_exe(nil, args: '-v').should include(RUBY_DESCRIPTION)
end
end
end