Sha256: d7fd3089ca7752203ab0d358ea7210786b49c82e34560bef87f734b0503d6405
Contents?: true
Size: 453 Bytes
Versions: 35
Compression:
Stored size: 453 Bytes
Contents
require "webmock/rspec" require "json" require "deploygate" RSpec.configure do |config| config.before :each do # config file mock allow(DeployGate::Config::Credential).to receive(:file_path).and_return(File.join(SPEC_FILE_PATH, 'test_files/.dg/credentials')) end end API_ENDPOINT = "https://deploygate.com/api" SPEC_FILE_PATH = File.dirname(__FILE__) def test_file_path File.join(SPEC_FILE_PATH, 'test_files/DeployGateSample.apk') end
Version data entries
35 entries across 35 versions & 1 rubygems