File tree Expand file tree Collapse file tree 1 file changed +18
-0
lines changed Expand file tree Collapse file tree 1 file changed +18
-0
lines changed Original file line number Diff line number Diff line change @@ -1604,6 +1604,24 @@ def create_temporary_dir(dir)
1604
1604
end
1605
1605
end
1606
1606
1607
+ context "testing --bundle option against git and bundle config settings" do
1608
+ context "with bundle option in bundle config settings set to true" do
1609
+ before do
1610
+ global_config "BUNDLE_GEM__BUNDLE" => "true"
1611
+ end
1612
+ it_behaves_like "--bundle flag"
1613
+ it_behaves_like "--no-bundle flag"
1614
+ end
1615
+
1616
+ context "with bundle option in bundle config settings set to false" do
1617
+ before do
1618
+ global_config "BUNDLE_GEM__BUNDLE" => "false"
1619
+ end
1620
+ it_behaves_like "--bundle flag"
1621
+ it_behaves_like "--no-bundle flag"
1622
+ end
1623
+ end
1624
+
1607
1625
context "testing --github-username option against git and bundle config settings" do
1608
1626
context "without git config set" do
1609
1627
before do
You can’t perform that action at this time.
0 commit comments