spec/array_spec.rb in taza-0.8.4 vs spec/array_spec.rb in taza-0.8.5
- old
+ new
@@ -1,6 +1,7 @@
require 'spec/spec_helper'
+require 'extensions/array'
describe 'Array Extensions' do
it "should know if elements are not equivilent to a subset of those elements" do
[1,2,3].should_not be_equivalent([2,3])
end
@@ -11,6 +12,6 @@
[1,2,3].should be_equivalent([1,2,3])
end
it "should know it is equivalent if the different orders" do
[1,2,3].should be_equivalent([2,1,3])
end
-end
\ No newline at end of file
+end