1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@62656 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
eregon 2018-03-04 15:09:32 +00:00
parent 8a15857a7f
commit 401b64c4e8
3689 changed files with 6095 additions and 6096 deletions

View file

@ -1,5 +1,5 @@
require File.expand_path('../../../spec_helper', __FILE__)
require File.expand_path('../../../fixtures/enumerator/classes', __FILE__)
require_relative '../../spec_helper'
require_relative '../../fixtures/enumerator/classes'
describe :enum_cons, shared: true do
it "returns an enumerator of the receiver with iteration of each_cons for each array of n concecutive elements" do

View file

@ -1,4 +1,4 @@
require File.expand_path('../../../spec_helper', __FILE__)
require_relative '../../spec_helper'
describe :enum_new, shared: true do
it "creates a new custom enumerator with the given object, iterator and arguments" do

View file

@ -1,4 +1,4 @@
require File.expand_path('../../../spec_helper', __FILE__)
require_relative '../../spec_helper'
describe :enum_next, shared: true do

View file

@ -1,4 +1,4 @@
require File.expand_path('../../../spec_helper', __FILE__)
require_relative '../../spec_helper'
describe :enum_rewind, shared: true do

View file

@ -1,8 +1,8 @@
require File.expand_path('../../../spec_helper', __FILE__)
require_relative '../../spec_helper'
describe :enum_with_index, shared: true do
require File.expand_path('../../../fixtures/enumerator/classes', __FILE__)
require_relative '../../fixtures/enumerator/classes'
before :each do
@enum = [1, 2, 3, 4].to_enum

View file

@ -1,4 +1,4 @@
require File.expand_path('../../../spec_helper', __FILE__)
require_relative '../../spec_helper'
describe :enum_with_object, shared: true do
before :each do