summaryrefslogtreecommitdiff
path: root/spec/unit/parser/functions/unique_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/unit/parser/functions/unique_spec.rb')
-rw-r--r--spec/unit/parser/functions/unique_spec.rb9
1 files changed, 7 insertions, 2 deletions
diff --git a/spec/unit/parser/functions/unique_spec.rb b/spec/unit/parser/functions/unique_spec.rb
index 7b8b08d..627dc33 100644
--- a/spec/unit/parser/functions/unique_spec.rb
+++ b/spec/unit/parser/functions/unique_spec.rb
@@ -19,8 +19,13 @@ describe "the unique function" do
end
it "should remove duplicate elements in a string" do
- result = @scope.function_squeeze([["aabbc"]])
- result.should(eq(['abc']))
+ result = @scope.function_unique(["aabbc"])
+ result.should(eq('abc'))
+ end
+
+ it "should remove duplicate elements in an array" do
+ result = @scope.function_unique([["a","a","b","b","c"]])
+ result.should(eq(['a','b','c']))
end
end