spec/cucumber/cli/options_spec.rb in cucumber-0.3.94 vs spec/cucumber/cli/options_spec.rb in cucumber-0.3.95
- old
+ new
@@ -207,10 +207,14 @@
options.parse!(%w[-p foo])
options[:snippets].should be_false
options[:source].should be_false
end
+ it "uses the language from profile when none is specified on the command line" do
+ given_cucumber_yml_defined_as({'foo' => '--language fr'})
+ after_parsing('-p foo') {options[:lang].should == 'fr'}
+ end
end
context '-P or --no-profile' do
it "disables profiles" do
@@ -276,31 +280,41 @@
given_cucumber_yml_defined_as('foo' => '-v',
'bar' => '--wip -p baz',
'baz' => '-r some_file.rb')
options.parse!(%w[features -p foo --profile bar])
- options.expanded_args_without_drb.should == %w[features -v --wip -r some_file.rb]
+ options.expanded_args_without_drb.should == %w[features -v --wip -r some_file.rb --no-profile]
end
it "removes the --drb flag so that the args can be safely passed to the drb server" do
given_cucumber_yml_defined_as('default' => 'features -f pretty --drb')
options.parse!(%w[--profile default])
- options.expanded_args_without_drb.should == %w[features -f pretty]
+ options.expanded_args_without_drb.should == %w[features -f pretty --no-profile]
end
it "contains the environment variables" do
options.parse!(%w[features FOO=bar])
- options.expanded_args_without_drb.should == %w[features FOO=bar]
+ options.expanded_args_without_drb.should == %w[features FOO=bar --no-profile]
end
it "ignores the paths from the profiles if one was specified on the command line" do
given_cucumber_yml_defined_as('foo' => 'features --drb')
options.parse!(%w[some_feature.feature -p foo])
- options.expanded_args_without_drb.should == %w[some_feature.feature]
+ options.expanded_args_without_drb.should == %w[some_feature.feature --no-profile]
end
+ it "appends the --no-profile flag so that the DRb server doesn't reload the profiles" do
+ given_cucumber_yml_defined_as('foo' => 'features --drb')
+ options.parse!(%w[some_feature.feature -p foo])
+ options.expanded_args_without_drb.should == %w[some_feature.feature --no-profile]
+ end
+
+ it "does not append --no-profile if already present" do
+ options.parse!(%w[some_feature.feature -P])
+ options.expanded_args_without_drb.should == %w[some_feature.feature -P]
+ end
end
end