Sha256: 3743fe04b65b8f2a6a5d5cc29873e26f5424a3823ba56e4579859dfb1eddeb39

Contents?: true

Size: 1.1 KB

Versions: 158

Compression:

Stored size: 1.1 KB

Contents

require 'spec_helper'

module Beaker
  describe Windows::Group do
    class WindowsGroupTest
      include Windows::Group
    end

    let(:instance) { WindowsGroupTest.new }
    let(:result) { double(:result, :stdout => group_list_output) }
    let(:group_list_output) do <<-EOS


Name=Foo


Name=Bar6


      EOS
    end

    def add_group(group_name)
      group_list_output << <<-EOS
Name=#{group_name}


      EOS
    end

    before(:each) do
      expect( instance ).to receive(:execute).with(/wmic group where/).and_yield(result)
    end

    it "gets a group_list" do
      expect(instance.group_list).to eql(["Foo", "Bar6"])
    end

    it "gets groups with spaces" do
      add_group("With Spaces")
      expect(instance.group_list).to eql(["Foo", "Bar6", "With Spaces"])
    end


    it "gets groups with dashes" do
      add_group("With-Dashes")
      expect(instance.group_list).to eql(["Foo", "Bar6", "With-Dashes"])
    end

    it "gets groups with underscores" do
      add_group("With_Underscores")
      expect(instance.group_list).to eql(["Foo", "Bar6", "With_Underscores"])
    end
  end
end

Version data entries

158 entries across 158 versions & 1 rubygems

Version Path
beaker-4.11.0 spec/beaker/host/windows/group_spec.rb
beaker-4.10.0 spec/beaker/host/windows/group_spec.rb
beaker-4.9.0 spec/beaker/host/windows/group_spec.rb
beaker-4.8.0 spec/beaker/host/windows/group_spec.rb
beaker-4.7.0 spec/beaker/host/windows/group_spec.rb
beaker-4.6.0 spec/beaker/host/windows/group_spec.rb
beaker-4.5.0 spec/beaker/host/windows/group_spec.rb
beaker-4.4.0 spec/beaker/host/windows/group_spec.rb
beaker-4.3.0 spec/beaker/host/windows/group_spec.rb
beaker-4.2.0 spec/beaker/host/windows/group_spec.rb
beaker-4.1.0 spec/beaker/host/windows/group_spec.rb
beaker-4.0.0 spec/beaker/host/windows/group_spec.rb
beaker-3.37.0 spec/beaker/host/windows/group_spec.rb
beaker-3.36.0 spec/beaker/host/windows/group_spec.rb
beaker-3.35.0 spec/beaker/host/windows/group_spec.rb
beaker-3.34.0 spec/beaker/host/windows/group_spec.rb
beaker-3.33.0 spec/beaker/host/windows/group_spec.rb
beaker-3.32.0 spec/beaker/host/windows/group_spec.rb
beaker-3.31.0 spec/beaker/host/windows/group_spec.rb
beaker-3.30.0 spec/beaker/host/windows/group_spec.rb