spec/cucumber/cli/options_spec.rb in cucumber-0.4.4 vs spec/cucumber/cli/options_spec.rb in cucumber-0.4.5.rc1
- old
+ new
@@ -61,12 +61,9 @@
end
it "exits the program" do
when_parsing('--language help') { Kernel.should_receive(:exit) }
end
end
- it "sets the langauge" do
- after_parsing('-l en') { options[:lang].should == 'en' }
- end
end
context "--port PORT" do
it "sets the drb_port to the provided option" do
after_parsing('--port 4500') { options[:drb_port].should == '4500' }