summaryrefslogtreecommitdiff
path: root/spec/ruby/library/set/to_a_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/library/set/to_a_spec.rb')
-rw-r--r--spec/ruby/library/set/to_a_spec.rb8
1 files changed, 0 insertions, 8 deletions
diff --git a/spec/ruby/library/set/to_a_spec.rb b/spec/ruby/library/set/to_a_spec.rb
deleted file mode 100644
index 689e44f38a..0000000000
--- a/spec/ruby/library/set/to_a_spec.rb
+++ /dev/null
@@ -1,8 +0,0 @@
-require_relative '../../spec_helper'
-require 'set'
-
-describe "Set#to_a" do
- it "returns an array containing elements of self" do
- Set[1, 2, 3].to_a.sort.should == [1, 2, 3]
- end
-end