We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cd8bf2f commit 7837f31Copy full SHA for 7837f31
spec/invocation_spec.rb
@@ -76,13 +76,13 @@
76
expect(capture(:stdout) { base.invoke("c:one") }).to be_empty
77
end
78
79
- it "raises Thor::UndefinedcommandError if the command can't be found" do
+ it "raises Thor::UndefinedCommandError if the command can't be found" do
80
expect {
81
A.new.invoke("foo:bar")
82
}.to raise_error(Thor::UndefinedCommandError)
83
84
85
- it "raises Thor::UndefinedcommandError if the command can't be found even if all commands were already executed" do
+ it "raises Thor::UndefinedCommandError if the command can't be found even if all commands were already executed" do
86
base = C.new
87
silence(:stdout){ base.invoke_all }
88
0 commit comments