aboutsummaryrefslogtreecommitdiffstats
path: root/spec/mspec/spec/commands/mspec_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/mspec/spec/commands/mspec_spec.rb')
-rw-r--r--spec/mspec/spec/commands/mspec_spec.rb10
1 files changed, 1 insertions, 9 deletions
diff --git a/spec/mspec/spec/commands/mspec_spec.rb b/spec/mspec/spec/commands/mspec_spec.rb
index 8b8b8fcc41..5d2134a054 100644
--- a/spec/mspec/spec/commands/mspec_spec.rb
+++ b/spec/mspec/spec/commands/mspec_spec.rb
@@ -83,7 +83,7 @@ describe MSpecMain, "#run" do
it "calls #multi_exec if the command is 'ci' and the multi option is passed" do
@script.should_receive(:multi_exec).and_return do |argv|
- argv.should == ["ruby", "#{MSPEC_HOME}/bin/mspec-ci", "-fy"]
+ argv.should == ["ruby", "#{MSPEC_HOME}/bin/mspec-ci"]
end
@script.options ["ci", "-j"]
lambda do
@@ -140,14 +140,6 @@ describe "The -j, --multi option" do
@config[:multi].should == true
end
end
-
- it "sets the formatter to YamlFormatter" do
- ["-j", "--multi"].each do |opt|
- @config[:options] = []
- @script.options [opt]
- @config[:options].should include("-fy")
- end
- end
end
describe "The -h, --help option" do