aboutsummaryrefslogtreecommitdiffhomepage
path: root/spec/spec_helper.rb
blob: b3d85969215cd4beaff60c71a8a47755ff961db0 (plain) (blame)
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
26
# frozen_string_literal: true

require 'fileutils'
require 'byebug'
require 'rspec'
require 'pronto/eslint_npm'

%w[test eslintignore].each do |repo_name|
  RSpec.shared_context "#{repo_name} repo" do
    let(:git) { "spec/fixtures/#{repo_name}.git/git" }
    let(:dot_git) { "spec/fixtures/#{repo_name}.git/.git" }

    before { FileUtils.mv(git, dot_git) }
    let(:repo) { Pronto::Git::Repository.new("spec/fixtures/#{repo_name}.git") }
    after { FileUtils.mv(dot_git, git) }
  end
end

RSpec.shared_context 'with config', config: true do
  requested_config = metadata[:config].to_yaml

  let(:config_path) { File.join(repo.path.to_s, Pronto::ESLintNpm::CONFIG_FILE) }

  before(:each) { File.write(config_path, requested_config) }
  after(:each) { FileUtils.rm(config_path) }
end