Description: Disable tests that require network access
 Thoses tests need to access to https://forgeapi.puppetlabs.com
 in order to fetch module version.
Author: Sebastien Badia <sbadia@debian.org>
Forwarded: not-needed
Last-Update: 2017-08-23

--- a/spec/unit/module/forge_spec.rb
+++ b/spec/unit/module/forge_spec.rb
@@ -63,7 +63,7 @@ describe R10K::Module::Forge do
   context "when a module is deprecated" do
     subject { described_class.new('puppetlabs/corosync', fixture_modulepath, :latest) }
 
-    it "warns on sync if module is not already insync" do
+    xit "warns on sync if module is not already insync" do
       allow(subject).to receive(:status).and_return(:absent)
 
       allow(R10K::Forge::ModuleRelease).to receive(:new).and_return(double('mod_release', install: true))
@@ -179,7 +179,7 @@ describe R10K::Module::Forge do
   end
 
   describe '#install' do
-    it 'installs the module from the forge' do
+    xit 'installs the module from the forge' do
       subject = described_class.new('branan/eight_hundred', fixture_modulepath, '8.0.0')
       release = instance_double('R10K::Forge::ModuleRelease')
       expect(R10K::Forge::ModuleRelease).to receive(:new).with('branan-eight_hundred', '8.0.0').and_return(release)
