Sha256: 0e80cee3af4527789dcb29e39091254392a310f6f5c33a6aadf8e03603a8a822
Contents?: true
Size: 1.46 KB
Versions: 5
Compression:
Stored size: 1.46 KB
Contents
# encoding: utf-8 require 'codeclimate-test-reporter' CodeClimate::TestReporter.start require 'minitest/autorun' require 'ostruct' require 'securerandom' require 'fir' FIR.logger = Logger.new(STDOUT) class Minitest::Test def default_token '2dd8a99ef9d19c540bb583624b939960' end def default_email 'fir-cli_test@fir.im' end def default_apk File.expand_path('../cases', __FILE__) + '/test_apk.apk' end def default_ipa File.expand_path('../cases', __FILE__) + '/test_ipa.ipa' end def default_ipa_project File.expand_path('../projects', __FILE__) + '/ipa' end def default_apk_project File.expand_path('../projects', __FILE__) + '/apk' end def default_ipa_git_url 'git@github.com:NaixSpirit/build_ipa_example.git' end def default_apk_git_url 'git@github.com:NaixSpirit/build_apk_example.git' end def default_bughd_project_ios_id '55bb2839692d647a46000004' end def default_bughd_project_android_id '55be454a692d351278000002' end def default_dsym_mapping File.expand_path('../cases', __FILE__) + '/test_ipa_dsym' end def default_txt_mapping File.expand_path('../cases', __FILE__) + '/test_apk_txt' end def bigger_txt_mapping File.expand_path('../projects', __FILE__) + '/biggggger.txt' end def default_device_udid 'cf8b87e3f469d7b185fd64c057778aecbc2017a6' end def default_distribution_name 'iOSTeam Provisioning Profile: im.fir.* - Fly It Remotely LLC.' end end
Version data entries
5 entries across 5 versions & 1 rubygems
Version | Path |
---|---|
fir-cli-1.5.0 | test/test_helper.rb |
fir-cli-1.4.9 | test/test_helper.rb |
fir-cli-1.4.8 | test/test_helper.rb |
fir-cli-1.4.7 | test/test_helper.rb |
fir-cli-1.4.6 | test/test_helper.rb |