Sha256: f4edb3a30178a193a9d35476078e91bc4349a1de2cdd186c686a21b521494408

Contents?: true

Size: 1.15 KB

Versions: 5

Compression:

Stored size: 1.15 KB

Contents

require 'coveralls'
Coveralls.wear!

$LOAD_PATH.unshift(File.dirname(__FILE__))
$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
require 'homesick'
require 'rspec'
require 'test_construct'
require 'tempfile'

RSpec.configure do |config|
  config.include TestConstruct::Helpers

  config.expect_with(:rspec) { |c| c.syntax = :expect }

  config.before { ENV['HOME'] = home.to_s }

  config.before { silence! }

  def silence!
    allow(homesick).to receive(:say_status)
  end

  def given_castle(path, subdirs = [])
    name = Pathname.new(path).basename
    castles.directory(path) do |castle|
      Dir.chdir(castle) do
        system 'git init >/dev/null 2>&1'
        system 'git config user.email "test@test.com"'
        system 'git config user.name "Test Name"'
        system "git remote add origin git://github.com/technicalpickles/#{name}.git >/dev/null 2>&1"
        if subdirs
          subdir_file = castle.join(Homesick::SUBDIR_FILENAME)
          subdirs.each do |subdir|
            File.open(subdir_file, 'a') { |file| file.write "\n#{subdir}\n" }
          end
        end
        return castle.directory('home')
      end
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
homesick-1.1.6 spec/spec_helper.rb
homesick-1.1.5 spec/spec_helper.rb
homesick-1.1.4 spec/spec_helper.rb
homesick-1.1.3 spec/spec_helper.rb
homesick-1.1.2 spec/spec_helper.rb