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