Sha256: 2336ee82dbb48cc62d2f4c0214202cba28e25e54c2d25968686f5f825e72938e

Contents?: true

Size: 889 Bytes

Versions: 3

Compression:

Stored size: 889 Bytes

Contents

module SliningTestHelpers
  APP_NAME = "dummy_app"

  def remove_project_directory
    FileUtils.rm_rf(project_path)
  end

  def create_tmp_directory
    FileUtils.mkdir_p(tmp_path)
  end

  def run_slining(arguments = nil)
    Dir.chdir(tmp_path) do
      Bundler.with_clean_env do
        ENV['TESTING'] = '1'

        %x(#{slining_bin} #{APP_NAME} #{arguments})
      end
    end
  end

  def drop_dummy_database
    if File.exist?(project_path)
      Dir.chdir(project_path) do
        Bundler.with_clean_env do
          `rake db:drop`
        end
      end
    end
  end

  def project_path
    @project_path ||= Pathname.new("#{tmp_path}/#{APP_NAME}")
  end

  private

  def tmp_path
    @tmp_path ||= Pathname.new("#{root_path}/tmp")
  end

  def slining_bin
    File.join(root_path, 'bin', 'slining')
  end

  def root_path
    File.expand_path('../../../', __FILE__)
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
slining-1.1.0 spec/support/slining.rb
slining-1.0.1 spec/support/slining.rb
slining-1.0.0 spec/support/slining.rb