summaryrefslogtreecommitdiff
path: root/spec/ruby/core/dir/seek_spec.rb
blob: ed409897cdb466bbc36e65588b7a8efd0bd32726 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
require_relative '../../spec_helper'
require_relative 'fixtures/common'
require_relative 'shared/pos'

describe "Dir#seek" do
  before :all do
    DirSpecs.create_mock_dirs
  end

  after :all do
    DirSpecs.delete_mock_dirs
  end

  it "returns the Dir instance" do
    @dir.seek(@dir.pos).should == @dir
  end

  it_behaves_like :dir_pos_set, :seek
end