Sha256: 80d3eacc59c4349efd52a681fd80d86c4ac9818a0d962396bfc0f8e568c34d63

Contents?: true

Size: 1.69 KB

Versions: 7

Compression:

Stored size: 1.69 KB

Contents

# -*- encoding: utf-8 -*-

# Copyright (c) Microsoft Corporation
# 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
#
# THIS CODE IS PROVIDED *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF
# ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY
# IMPLIED WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR
# PURPOSE, MERCHANTABLITY OR NON-INFRINGEMENT.
#
# See the Apache Version 2.0 License for specific language governing
# permissions and limitations under the License.

require 'simplecov'
require 'coveralls'

SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter[
    SimpleCov::Formatter::HTMLFormatter,
      Coveralls::SimpleCov::Formatter
]
SimpleCov.start

require 'yammer'
require 'rspec'
require 'rspec/autorun'
require 'webmock/rspec'

WebMock.disable_net_connect!(:allow => 'coveralls.io')

RSpec.configure do |config|
  config.mock_with :rspec
  config.expect_with :rspec do |c|
    c.syntax = :expect
  end
end

def stub_delete(path='')
  stub_request(:delete, "https://www.yammer.com#{path}")
end

def stub_get(path='')
  stub_request(:get, "https://www.yammer.com#{path}")
end

def stub_post(path='')
  stub_request(:post, "https://www.yammer.com#{path}")
end

def stub_put(path='')
  stub_request(:put, "https://www.yammer.com#{path}")
end

def fixture_path
  File.expand_path("../fixtures", __FILE__)
end

def mock_path
  File.expand_path("../mocks", __FILE__)
end

def fixture(file)
  File.new("#{fixture_path}/#{file}")
end

def upload(file)
  File.new("#{mock_path}/#{file}")
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
yam-2.4.1 spec/spec_helper.rb
yam-2.4.0 spec/spec_helper.rb
yam-2.3.0 spec/spec_helper.rb
yam-2.2.0 spec/spec_helper.rb
yam-2.1.2 spec/spec_helper.rb
yam-2.1.1 spec/spec_helper.rb
yam-2.1.0 spec/spec_helper.rb