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 2ea25a6 commit 005597bCopy full SHA for 005597b
spec/parser/argument_spec.rb
@@ -55,15 +55,15 @@ def argument(name, options = {})
55
expect(argument(:foo, {
56
:required => false,
57
:type => :array,
58
- :default => ['one','two']
+ :default => ["one","two"]
59
}).print_default).to eq('"one" "two"')
60
end
61
it "prints arrays with a single string default as before" do
62
63
64
65
- :default => 'foobar'
66
- }).print_default).to eq('foobar')
+ :default => "foobar"
+ }).print_default).to eq("foobar")
67
68
it "prints none arrays as default" do
69
0 commit comments