summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKenichi Kamiya <[email protected]>2024-05-04 06:34:29 +0900
committergit <[email protected]>2024-05-03 21:34:34 +0000
commit70db150fbcb44c43ce4d62c6170e0527ecaea84c (patch)
tree64276042acdc3b3a384563ca2698bd03890cc3b0
parentd4a6d0c17781821d967063613fab5992231a5158 (diff)
[ruby/irb] Fix typos in test/irb/command/test_custom_command.rb
(https://github.com/ruby/irb/pull/945) https://github.com/ruby/irb/commit/f2b5fc192f
-rw-r--r--test/irb/command/test_custom_command.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/irb/command/test_custom_command.rb b/test/irb/command/test_custom_command.rb
index 6642d2b160..16800db2c8 100644
--- a/test/irb/command/test_custom_command.rb
+++ b/test/irb/command/test_custom_command.rb
@@ -5,7 +5,7 @@ require_relative "../helper"
module TestIRB
class CustomCommandIntegrationTest < TestIRB::IntegrationTestCase
- def test_command_regsitration_can_happen_after_irb_require
+ def test_command_registration_can_happen_after_irb_require
write_ruby <<~RUBY
require "irb"
require "irb/command"
@@ -32,7 +32,7 @@ module TestIRB
assert_include(output, "Hello from PrintCommand")
end
- def test_command_regsitration_accepts_string_too
+ def test_command_registration_accepts_string_too
write_ruby <<~RUBY
require "irb/command"
@@ -58,7 +58,7 @@ module TestIRB
assert_include(output, "Hello from PrintCommand")
end
- def test_arguments_propogation
+ def test_arguments_propagation
write_ruby <<~RUBY
require "irb/command"