summaryrefslogtreecommitdiff
path: root/spec/rubyspec/core/struct/each_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/rubyspec/core/struct/each_spec.rb')
-rw-r--r--spec/rubyspec/core/struct/each_spec.rb27
1 files changed, 0 insertions, 27 deletions
diff --git a/spec/rubyspec/core/struct/each_spec.rb b/spec/rubyspec/core/struct/each_spec.rb
deleted file mode 100644
index 86302d91c6..0000000000
--- a/spec/rubyspec/core/struct/each_spec.rb
+++ /dev/null
@@ -1,27 +0,0 @@
-require File.expand_path('../../../spec_helper', __FILE__)
-require File.expand_path('../fixtures/classes', __FILE__)
-require File.expand_path('../shared/accessor', __FILE__)
-require File.expand_path('../../enumerable/shared/enumeratorized', __FILE__)
-
-describe "Struct#each" do
- it "passes each value to the given block" do
- car = StructClasses::Car.new('Ford', 'Ranger')
- i = -1
- car.each do |value|
- value.should == car[i += 1]
- end
- end
-
- it "returns self if passed a block" do
- car = StructClasses::Car.new('Ford', 'Ranger')
- car.each {}.should == car
- end
-
- it "returns an Enumerator if not passed a block" do
- car = StructClasses::Car.new('Ford', 'Ranger')
- car.each.should be_an_instance_of(Enumerator)
- end
-
- it_behaves_like :struct_accessor, :each
- it_behaves_like :enumeratorized_with_origin_size, :each, StructClasses::Car.new('Ford', 'Ranger')
-end