spec/pdb_spec.rb in puppet-debugger-0.19.0 vs spec/pdb_spec.rb in puppet-debugger-1.0.0

- old
+ new

@@ -26,15 +26,10 @@ end it do expect(`bundle exec bin/pdb --play #{fixtures_file} --run-once`) .to match(/Puppet::Type::File/) end - # xit do - # # this test does not work without internet, and I am at 30K feet right now - # expect(`bundle exec bin/pdb --play #{file_url} --run-once`) - # .to match(/Puppet::Type::File/) - # end describe 'remote_node' do let(:node_obj) do YAML.load_file(File.join(fixtures_dir, 'node_obj.yaml')) end @@ -42,11 +37,7 @@ 'puppetdev.localdomain' end before :each do allow(PuppetDebugger).to receive(:get_remote_node).with(node_name).and_return(node_obj) end - # xit do - # expect(`echo 'vars'| bundle exec bin/pdb -n #{node_name}`) - # .to match(/server_facts/) - # end end end