blob: 4d1ff71e844417d065f1b5dc2d75e1c8d3f01555 (
plain) (
tree)
|
|
require 'rspec'
require 'rspec/its'
require 'pronto/eslint'
RSpec.shared_context 'test repo' do
let(:git) { 'spec/fixtures/test.git/git' }
let(:dot_git) { 'spec/fixtures/test.git/.git' }
before { FileUtils.mv(git, dot_git) }
let(:repo) { Pronto::Git::Repository.new('spec/fixtures/test.git') }
after { FileUtils.mv(dot_git, git) }
end
RSpec.configure do |config|
config.expect_with(:rspec) { |c| c.syntax = :should }
config.mock_with(:rspec) { |c| c.syntax = :should }
end
|