ae600fe55b6f07c55b4094a664fcc61ebc2ac9ba
[packages/precise/mcollective.git] / spec / unit / symbol_spec.rb
1 #!/usr/bin/env rspec
2
3 require 'spec_helper'
4
5 class Symbol
6   describe "#<=>" do
7     it "should be sortable" do
8       [:foo, :bar].sort.should == [:bar, :foo]
9     end
10   end
11 end