Sha256: 61065caf0138ec25209d2970f320cad8bece5b17ba22d949ddfc8b6530a1fde4

Contents?: true

Size: 340 Bytes

Versions: 1

Compression:

Stored size: 340 Bytes

Contents

require './lib/everything'

describe Everything do
  describe '.path' do
    let(:expected_path) do
      '/some/path/to/your/everything/repo/'
    end

    before do
      ENV['EVERYTHING_PATH'] = expected_path
    end

    it 'is the path from the environment' do
      expect(described_class.path).to eq(expected_path)
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
everything-core-0.0.3 spec/everything_spec.rb