spec/cli/helper_spec.rb in metric_fu-4.11.1 vs spec/cli/helper_spec.rb in metric_fu-4.11.2
- old
+ new
@@ -153,16 +153,16 @@
it "turns roodi on" do
expect(helper.process_options(["--roodi"])[:roodi]).to be_truthy
end
- context 'given a single format' do
+ context "given a single format" do
it "sets the format" do
expect(helper.process_options(["--format", "json"])[:format]).to eq([['json']])
end
end
- context 'given multiple formats' do
+ context "given multiple formats" do
it "sets multiple formats" do
expect(helper.process_options(["--format", "json", "--format", "yaml"])[:format]).to eq([['json'], ['yaml']])
end
end