Sha256: 508cf9ca794b09068ed085d22bc31149ad53bee3392b813879ccea16ed7aef2c
Contents?: true
Size: 485 Bytes
Versions: 8
Compression:
Stored size: 485 Bytes
Contents
require 'spec_helper' describe Asbestos::Host do before(:each) do Asbestos.reset! end context "the 'address' DSL call" do it "should create a new named address" do address "some_host", '1.2.3.4' Asbestos::Address['some_host'].should == ['1.2.3.4'] end it "should create a new address set" do address "some_host", ['1.2.3.4', 'some_hostname'] Asbestos::Address['some_host'].should == ['1.2.3.4', 'some_hostname'] end end end
Version data entries
8 entries across 8 versions & 1 rubygems