summaryrefslogtreecommitdiff
path: root/spec/mspec/spec/helpers/fixture_spec.rb
blob: d8e2ae7be4f0124496f875a13b160569810373a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
require 'spec_helper'
require 'mspec/guards'
require 'mspec/helpers'

RSpec.describe Object, "#fixture" do
  before :each do
    @dir = File.realpath("..", __FILE__)
  end

  it "returns the expanded path to a fixture file" do
    name = fixture(__FILE__, "subdir", "file.txt")
    expect(name).to eq("#{@dir}/fixtures/subdir/file.txt")
  end

  it "omits '/shared' if it is the suffix of the directory string" do
    name = fixture("#{@dir}/shared/file.rb", "subdir", "file.txt")
    expect(name).to eq("#{@dir}/fixtures/subdir/file.txt")
  end

  it "does not append '/fixtures' if it is the suffix of the directory string" do
    commands_dir = "#{File.dirname(@dir)}/commands"
    name = fixture("#{commands_dir}/fixtures/file.rb", "subdir", "file.txt")
    expect(name).to eq("#{commands_dir}/fixtures/subdir/file.txt")
  end
end