]> git.immae.eu Git - github/fretlink/pronto-hlint.git/blob - spec/spec_helper.rb
Merge pull request #2 from paulrbr-fl/fix-travis-ci
[github/fretlink/pronto-hlint.git] / spec / spec_helper.rb
1 # frozen_string_literal: true
2
3 require 'fileutils'
4 require 'rspec'
5 require 'pronto/hlint'
6
7 %w[test].each do |repo_name|
8 RSpec.shared_context "#{repo_name} repo" do
9 let(:git) { "spec/fixtures/#{repo_name}.git/git" }
10 let(:dot_git) { "spec/fixtures/#{repo_name}.git/.git" }
11
12 before { FileUtils.mv(git, dot_git) }
13 let(:repo) { Pronto::Git::Repository.new("spec/fixtures/#{repo_name}.git") }
14 after { FileUtils.mv(dot_git, git) }
15 end
16 end
17
18 RSpec.shared_context 'with config', config: true do
19 requested_config = metadata[:config]
20
21 before(:each) do
22 allow_any_instance_of(Pronto::Hlint::Runner).to receive(:config_options).and_return(requested_config)
23
24 # make sure the config is actually read in the example
25 expect_any_instance_of(Pronto::Hlint::Runner).to receive(:read_config).and_call_original
26 end
27 end