Sha256: 78207d6a5e7cf935ec488721dd6d917b9f68cf06a37363f2cd20b06d47c4e7b8

Contents?: true

Size: 1.54 KB

Versions: 1

Compression:

Stored size: 1.54 KB

Contents

#-------------------------------------------------------------------------
# Copyright (c) Microsoft. 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.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

1 entries across 1 versions & 1 rubygems

Version Path
azure-0.5.0 test/test_helper.rb