]> git.immae.eu Git - github/fretlink/pronto-hlint.git/blame - spec/spec_helper.rb
update locally used ruby versiob, lint everything
[github/fretlink/pronto-hlint.git] / spec / spec_helper.rb
CommitLineData
0ab4d181
MD
1# frozen_string_literal: true
2
2add6782 3require 'fileutils'
a6e7dde8 4require 'byebug'
ce89f9ed 5require 'rspec'
126fe1e2 6require 'pronto/eslint_npm'
ce89f9ed 7
0ab4d181 8%w[test eslintignore].each do |repo_name|
fb94b0e6
MD
9 RSpec.shared_context "#{repo_name} repo" do
10 let(:git) { "spec/fixtures/#{repo_name}.git/git" }
11 let(:dot_git) { "spec/fixtures/#{repo_name}.git/.git" }
ce89f9ed 12
fb94b0e6
MD
13 before { FileUtils.mv(git, dot_git) }
14 let(:repo) { Pronto::Git::Repository.new("spec/fixtures/#{repo_name}.git") }
15 after { FileUtils.mv(dot_git, git) }
16 end
ce89f9ed 17end
1845f2e3
MD
18
19RSpec.shared_context 'with config', config: true do
20 requested_config = metadata[:config].to_yaml
21
22 let(:config_path) { File.join(repo.path.to_s, Pronto::ESLintNpm::CONFIG_FILE) }
23
24 before(:each) { File.write(config_path, requested_config) }
25 after(:each) { FileUtils.rm(config_path) }
26end