Sha256: ca7e4ac4b9d15ca2d5b9147af469da0f46dc875b167462ef13f4c936ca4628d6
Contents?: true
Size: 1.19 KB
Versions: 5
Compression:
Stored size: 1.19 KB
Contents
require File.join(File.dirname(File.expand_path(__FILE__)), "/../spec_helper.rb") describe AutomateIt::PackageManager::DPKG do before :all do @a = AutomateIt.new(:verbosity => Logger::WARN) @m = @a.package_manager @d = @m.drivers[:dpkg] end it "should parse a string of package names" do # Given string = <<-HERE foo bar # ignore baz # feh meh quux quux HERE @d.send(:_list_normalizer, string).sort.should == %w(bar baz foo meh quux) end it "should parse an array of package names" do # Given array = [ "foo bar # ignore", "baz", "# feh", "meh quux", "quux", ] @d.send(:_list_normalizer, array).sort.should == %w(bar baz foo meh quux) end it "should handle hash arguments" do # Given @d.should_receive(:_raise_unless_available).any_number_of_times.and_return(true) @d.should_receive(:installed?).and_return(false, ["foonix"]) @a.should_receive(:sh).and_return do |cmd| if cmd =~ /dpkg.*install.*\bfoonix-1.2.3.deb\b/ true else raise "Unknown cmd: #{cmd}" end end @d.install({:foonix => "foonix-1.2.3.deb"}, :with => :dpkg) end end
Version data entries
5 entries across 5 versions & 2 rubygems