Sha256: 0e1b43846f2ca47d7517f3bc370c8aea023f7fb895333022f769a0725ae6766e
Contents?: true
Size: 1.98 KB
Versions: 22
Compression:
Stored size: 1.98 KB
Contents
require 'spec_helper' describe Ridley::Bootstrapper do let(:nodes) do [ "33.33.33.10" ] end let(:options) do { ssh_user: "vagrant", ssh_password: "vagrant", server_url: "https://api.opscode.com/organizations/vialstudios", validator_client: "vialstudios-validator", validator_path: fixtures_path.join("reset.pem").to_s, encrypted_data_bag_secret_path: fixtures_path.join("reset.pem").to_s } end describe "ClassMethods" do subject { Ridley::Bootstrapper } describe "::new" do context "given a single string for nodes" do before(:each) do @obj = subject.new("33.33.33.10", options) end it "has one node" do @obj.hosts.should have(1).item end it "has one context" do @obj.contexts.should have(1).item end end context "given an an array of strings nodes" do before(:each) do @obj = subject.new(["33.33.33.10", "33.33.33.11"], options) end it "has a host for each item given" do @obj.hosts.should have(2).items end it "has a context for each item given" do @obj.contexts.should have(2).items end end end describe "::templates_path" do it "returns a pathname" do subject.templates_path.should be_a(Pathname) end end describe "::default_template" do it "returns a string" do subject.default_template.should be_a(String) end end end subject { Ridley::Bootstrapper.new(nodes, options) } describe "#hosts" do it "returns an array of strings" do subject.hosts.should be_a(Array) subject.hosts.should each be_a(String) end end describe "#contexts" do it "returns an array of Bootstrapper::Contexts" do subject.contexts.should be_a(Array) subject.contexts.should each be_a(Ridley::Bootstrapper::Context) end end describe "#run" do pending end end
Version data entries
22 entries across 22 versions & 1 rubygems