Sha256: 7891c680c4556c87516f59bbb83dd57d763aa7ca4f8506273e5717902ae20011
Contents?: true
Size: 929 Bytes
Versions: 8
Compression:
Stored size: 929 Bytes
Contents
require 'rspec' require 'helpers/repositories' require 'ronin/spec/database' include Ronin RSpec.configure do |spec| spec.before(:suite) do Repository.create( :path => File.join(Helpers::Repositories::DIR,'hello'), :name => 'hello', :domain => Repository::LOCAL_DOMAIN ) Repository.create( :path => File.join(Helpers::Repositories::DIR,'random'), :uri => 'git@github.com/path/to/random.git', :installed => true, :name => 'random', :domain => 'github.com' ) Repository.create( :path => File.join(Helpers::Repositories::DIR,'test1'), :uri => 'git@github.com/path/to/test1.git', :name => 'test1', :domain => 'github.com' ) Repository.create( :path => File.join(Helpers::Repositories::DIR,'test2'), :uri => 'git@github.com/path/to/test2.git', :name => 'test2', :domain => 'github.com' ) end end
Version data entries
8 entries across 8 versions & 1 rubygems