]> git.immae.eu Git - github/fretlink/pronto-hlint.git/blame - spec/spec_helper.rb
rebrand to Pronto::ESLintNpm
[github/fretlink/pronto-hlint.git] / spec / spec_helper.rb
CommitLineData
ce89f9ed
MM
1require 'rspec'
2require 'rspec/its'
5001cb27 3require 'pronto/eslint-npm'
ce89f9ed 4
fb94b0e6
MD
5%w(test eslintignore).each do |repo_name|
6 RSpec.shared_context "#{repo_name} repo" do
7 let(:git) { "spec/fixtures/#{repo_name}.git/git" }
8 let(:dot_git) { "spec/fixtures/#{repo_name}.git/.git" }
ce89f9ed 9
fb94b0e6
MD
10 before { FileUtils.mv(git, dot_git) }
11 let(:repo) { Pronto::Git::Repository.new("spec/fixtures/#{repo_name}.git") }
12 after { FileUtils.mv(dot_git, git) }
13 end
ce89f9ed
MM
14end
15
16RSpec.configure do |config|
17 config.expect_with(:rspec) { |c| c.syntax = :should }
18 config.mock_with(:rspec) { |c| c.syntax = :should }
19end