Updated mcollective.init according to OSCI-658
[packages/precise/mcollective.git] / spec / unit / plugins / mcollective / validator / length_validator_spec.rb
diff --git a/spec/unit/plugins/mcollective/validator/length_validator_spec.rb b/spec/unit/plugins/mcollective/validator/length_validator_spec.rb
new file mode 100644 (file)
index 0000000..4aa7e96
--- /dev/null
@@ -0,0 +1,19 @@
+#!/usr/bin/env rspec
+require 'spec_helper'
+require File.dirname(__FILE__) + '/../../../../../plugins/mcollective/validator/length_validator.rb'
+
+module MCollective
+  module Validator
+    describe "#validate" do
+      it "should raise an exception if the given string's length is greater than the given value" do
+        expect{
+          LengthValidator.validate("test", 3)
+        }.to raise_error(ValidatorError, "Input string is longer than 3 character(s)")
+      end
+
+      it "should not raise an exception if the given string's length is less than the given value" do
+        LengthValidator.validate("test", 4)
+      end
+    end
+  end
+end