Sha256: 35e1db6b5a66b54465cc6294e63b24f6d8e151979ab9560749059b84261ee577

Contents?: true

Size: 1.79 KB

Versions: 8

Compression:

Stored size: 1.79 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 "minitest/autorun"
require "mocha/setup"

# Attempt to load turn to show formatted test results
begin
  require "turn"
  Turn.config.format = :pretty
  Turn.config.natural = true
rescue LoadError
end

# 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"
# Azure.config.storage_table_host     = 
# Azure.config.storage_blob_host      = 
# Azure.config.storage_queue_host     = 
# Azure.config.sb_namespace           = 
# Azure.config.sb_access_key          = 
# Azure.config.sb_issuer              = 

Version data entries

8 entries across 8 versions & 3 rubygems

Version Path
azurex-0.6.7 test/test_helper.rb
azurex-0.6.6 test/test_helper.rb
azurex-0.6.5 test/test_helper.rb
azure-multistorage-0.6.4 test/test_helper.rb
azure-0.6.4 test/test_helper.rb
azure-0.6.3 test/test_helper.rb
azure-0.6.2 test/test_helper.rb
azure-0.6.1 test/test_helper.rb