Sha256: 755500146a1643b4a58c41c737eb364cb480dfd45d13e3bb1414ba42dab68561

Contents?: true

Size: 563 Bytes

Versions: 15

Compression:

Stored size: 563 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

15 entries across 15 versions & 1 rubygems

Version Path
lumberg-4.1.0 spec/cpanel/random_data_spec.rb
lumberg-4.0.0 spec/cpanel/random_data_spec.rb
lumberg-3.1.0 spec/cpanel/random_data_spec.rb
lumberg-3.0.0 spec/cpanel/random_data_spec.rb
lumberg-2.0.1 spec/cpanel/random_data_spec.rb
lumberg-2.0.0 spec/cpanel/random_data_spec.rb
lumberg-2.0.0.pre20 spec/cpanel/random_data_spec.rb
lumberg-2.0.0.pre18 spec/cpanel/random_data_spec.rb
lumberg-2.0.0.pre15 spec/cpanel/random_data_spec.rb
lumberg-2.0.0.pre12 spec/cpanel/random_data_spec.rb
lumberg-2.0.0.pre9 spec/cpanel/random_data_spec.rb
lumberg-2.0.0.pre8 spec/cpanel/random_data_spec.rb
lumberg-2.0.0.pre7 spec/cpanel/random_data_spec.rb
lumberg-2.0.0.pre6 spec/cpanel/random_data_spec.rb
lumberg-2.0.0.pre5 spec/cpanel/random_data_spec.rb