summaryrefslogtreecommitdiff
path: root/ext/win32ole/tests/testINVOKEVERB.rb
diff options
context:
space:
mode:
Diffstat (limited to 'ext/win32ole/tests/testINVOKEVERB.rb')
-rw-r--r--ext/win32ole/tests/testINVOKEVERB.rb16
1 files changed, 7 insertions, 9 deletions
diff --git a/ext/win32ole/tests/testINVOKEVERB.rb b/ext/win32ole/tests/testINVOKEVERB.rb
index 3510b9057c..96b3e2f88f 100644
--- a/ext/win32ole/tests/testINVOKEVERB.rb
+++ b/ext/win32ole/tests/testINVOKEVERB.rb
@@ -26,15 +26,13 @@ class TestInvokeVerb < Test::Unit::TestCase
# Yes, I know the string in the Windows 2000 Japanese Edition.
# But I do not know about the string in any other Windows.
#
- @fi2.verbs.each do |v|
- #
- # We expect the 'Create Shortcut' string is end with '(&S)'.
- #
- if /.*\(\&S\)$/ =~ v.name
- @shortcut = v.name
- break
- end
- end
+ verbs = @fi2.verbs
+ verbs.extend(Enumerable)
+ @shortcut = verbs.collect{|verb|
+ verb.name
+ }.find {|name|
+ /.*\(\&S\)$/ =~ name
+ }
end
def test_invokeverb