Sha256: 0114c0c8e298953fda7439d8c1adf33b34a2521c2f882e3f3487d582df5f2651
Contents?: true
Size: 458 Bytes
Versions: 22
Compression:
Stored size: 458 Bytes
Contents
# frozen_string_literal: true require 'spec_helper' describe 'Bzr::Scm' do it 'must pull the repository correctly' do with_bzr_repository('bzr') do |src| tmpdir do |dest_dir| core = OhlohScm::Factory.get_core(scm_type: :bzr, url: dest_dir) refute core.status.scm_dir_exist? core.scm.pull(src.scm, TestCallback.new) assert core.status.scm_dir_exist? assert core.status.exist? end end end end
Version data entries
22 entries across 22 versions & 1 rubygems