Sha256: f364e4e4283dad8358bfca53e2365e44cc0a0cfeda569cc7bfbbe99976de8ee6
Contents?: true
Size: 1.46 KB
Versions: 4
Compression:
Stored size: 1.46 KB
Contents
module GimbalTestHelpers 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_gimbal(arguments = nil) Dir.chdir(tmp_path) do Bundler.with_clean_env do add_fakes_to_path ` #{gimbal_bin} #{APP_NAME} #{arguments} ` end end end def gimbal_help_command Dir.chdir(tmp_path) do Bundler.with_clean_env do ` #{gimbal_bin} -h ` end end end def setup_app_dependencies if File.exist?(project_path) Dir.chdir(project_path) do Bundler.with_clean_env do `bundle check || bundle install` end 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 add_fakes_to_path ENV["PATH"] = "#{support_bin}:#{ENV['PATH']}" end def project_path @project_path ||= Pathname.new("#{tmp_path}/#{APP_NAME}") end def usage_file @usage_path ||= File.join(root_path, "USAGE") end private def tmp_path @tmp_path ||= Pathname.new("#{root_path}/tmp") end def gimbal_bin File.join(root_path, 'bin', 'gimbal') end def support_bin File.join(root_path, 'spec', 'fakes', 'bin') end def root_path File.expand_path('../../../', __FILE__) end end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
gimbal-0.3.0 | spec/support/gimbal.rb |
gimbal-0.2.0 | spec/support/gimbal.rb |
gimbal-0.1.0 | spec/support/gimbal.rb |
gimbal-0.0.6 | spec/support/gimbal.rb |