diff options
| author | Luke Kanies <luke@madstop.com> | 2009-09-19 21:21:33 -0700 |
|---|---|---|
| committer | James Turnbull <james@lovedthanlost.net> | 2009-09-22 09:27:22 +1000 |
| commit | d53bc169861815ce7cffac431f76304c995bb4fa (patch) | |
| tree | e87c0b2ff373a68cbc61115e8327af41edf10dde /spec/unit/resource | |
| parent | 5f2558939bbf4ce180aa5d7c0d534e974bd01a4f (diff) | |
Adding version information to the catalog for compat
We need to be able to do compatibility testing, and this
allows us to do so.
Signed-off-by: Luke Kanies <luke@madstop.com>
Diffstat (limited to 'spec/unit/resource')
| -rwxr-xr-x | spec/unit/resource/catalog.rb | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/spec/unit/resource/catalog.rb b/spec/unit/resource/catalog.rb index af399aa0f..1fbe3a984 100755 --- a/spec/unit/resource/catalog.rb +++ b/spec/unit/resource/catalog.rb @@ -35,6 +35,18 @@ describe Puppet::Resource::Catalog, "when compiling" do @catalog.write_class_file end + it "should have a client_version attribute" do + @catalog = Puppet::Resource::Catalog.new("host") + @catalog.client_version = 5 + @catalog.client_version.should == 5 + end + + it "should have a server_version attribute" do + @catalog = Puppet::Resource::Catalog.new("host") + @catalog.server_version = 5 + @catalog.server_version.should == 5 + end + describe "when compiling" do it "should accept tags" do config = Puppet::Resource::Catalog.new("mynode") |
