Sha256: 9586bb7c4dd8dd57df73497d327be38378bfed58924938bb64db4b7ae26a0846

Contents?: true

Size: 1.58 KB

Versions: 5

Compression:

Stored size: 1.58 KB

Contents

#-------------------------------------------------------------------------
# # Copyright (c) Microsoft and contributors. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#   http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#--------------------------------------------------------------------------
require 'dotenv'
Dotenv.load

require 'minitest/autorun'
require 'mocha/mini_test'
require 'minitest/reporters'
Minitest::Reporters.use! Minitest::Reporters::SpecReporter.new
require 'timecop'
require 'logger'
require 'stringio'

# add to the MiniTest DSL
module Kernel
  def need_tests_for(name)
    describe "##{name}" do
      it 'needs unit tests' do
        skip ''
      end
    end
  end
end


Dir['./test/support/**/*.rb'].each { |dep| require dep }

# mock configuration setup
require 'azure'

Azure.config.storage_account_name     = 'accountname'
Azure.config.storage_access_key       = 'YWNjZXNzLWtleQ=='
Azure.config.management_certificate   = File.expand_path('test/fixtures/management_certificate.pem')
Azure.config.management_endpoint      = 'https://management.core.windows.net'
Azure.config.subscription_id          = 'subscription-id'

Version data entries

5 entries across 5 versions & 2 rubygems

Version Path
azure-0.7.1 test/test_helper.rb
azure-0.7.0 test/test_helper.rb
azure-0.7.0.pre3 test/test_helper.rb
azure-fix-0.7.0.pre3 test/test_helper.rb
azure-0.7.0.pre2 test/test_helper.rb