Sha256: c79348edbbbc88f887ee1985145ba20caa54c7a94655d9412cb924b4735c5843

Contents?: true

Size: 578 Bytes

Versions: 2

Compression:

Stored size: 578 Bytes

Contents

require "spec_helper"

module Lumberg
  describe Cpanel::RandomData do
    let(:server) { Whm::Server.new(:host => @whm_host, :hash => @whm_hash) }
    let(:api_username) { "lumberg" }
    let(:random_data) do
      described_class.new(
        :server       => server,
        :api_username => api_username
      )
    end

    describe "#show" do
      use_vcr_cassette "cpanel/random_data/show"

      it "gets a random string" do
        result = random_data.show({ :length => 10 })[:params][:data]
        result[0][:random].size.should === 10
      end
    end

  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
lumberg-2.0.0.pre4 spec/cpanel/random_data_spec.rb
lumberg-2.0.0.pre3 spec/cpanel/random_data_spec.rb