summaryrefslogtreecommitdiff
path: root/spec/ruby/library/set/constructor_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/library/set/constructor_spec.rb')
-rw-r--r--spec/ruby/library/set/constructor_spec.rb15
1 files changed, 0 insertions, 15 deletions
diff --git a/spec/ruby/library/set/constructor_spec.rb b/spec/ruby/library/set/constructor_spec.rb
deleted file mode 100644
index bb84861514..0000000000
--- a/spec/ruby/library/set/constructor_spec.rb
+++ /dev/null
@@ -1,15 +0,0 @@
-require_relative '../../spec_helper'
-require 'set'
-
-describe "Set[]" do
- it "returns a new Set populated with the passed Objects" do
- set = Set[1, 2, 3]
-
- set.instance_of?(Set).should be_true
- set.size.should eql(3)
-
- set.should include(1)
- set.should include(2)
- set.should include(3)
- end
-end