summaryrefslogtreecommitdiff
path: root/test/option_test.rb
diff options
context:
space:
mode:
authorJuha Ylitalo <juha.ylitalo@reaktor.com>2020-01-07 10:02:41 +0200
committerJuha Ylitalo <juha.ylitalo@reaktor.com>2020-01-07 10:02:41 +0200
commit33a59e46b6fa89636e32b72fa8e025dee1b622b8 (patch)
tree4c7562ba50db8c51da04c927a6aeb8be2a15d60a /test/option_test.rb
parentdcb711b8aaa1731bfcc4571f70a8b0f5de87d5da (diff)
downloadslop-33a59e46b6fa89636e32b72fa8e025dee1b622b8.tar.gz
Tests on Ruby 2.7.0
Diffstat (limited to 'test/option_test.rb')
-rw-r--r--test/option_test.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/option_test.rb b/test/option_test.rb
index a8db657..4c23401 100644
--- a/test/option_test.rb
+++ b/test/option_test.rb
@@ -1,8 +1,8 @@
require 'test_helper'
describe Slop::Option do
- def option(*args)
- Slop::Option.new(*args)
+ def option(*args, **kwargs, &block)
+ Slop::Option.new(*args, **kwargs, &block)
end
describe "#flag" do