Updated mcollective.init according to OSCI-658
[packages/precise/mcollective.git] / spec / unit / symbol_spec.rb
diff --git a/spec/unit/symbol_spec.rb b/spec/unit/symbol_spec.rb
new file mode 100755 (executable)
index 0000000..ae600fe
--- /dev/null
@@ -0,0 +1,11 @@
+#!/usr/bin/env rspec
+
+require 'spec_helper'
+
+class Symbol
+  describe "#<=>" do
+    it "should be sortable" do
+      [:foo, :bar].sort.should == [:bar, :foo]
+    end
+  end
+end