Sha256: 17fb61db077fad8f2419d771c14bc3734c1b2b1b6522e971e0f67f837ade618b
Contents?: true
Size: 792 Bytes
Versions: 5
Compression:
Stored size: 792 Bytes
Contents
# -*- coding: utf-8 -*- # Author:: TAC (tac@tac42.net) require 'glint' Dir[File.expand_path("../servers/*.rb", __FILE__)].each {|f| require f} require 'rspec' shared_context 'httpserver' do require 'net/http' let(:uri) { "http://#{Glint::Server.info[:httpserver][:host]}:#{Glint::Server.info[:httpserver][:port]}" } end # ENV['CODECLIMATE_REPO_TOKEN'] = "0dc78d33107a7f11f257c0218ac1a37e0073005bb9734f2fd61d0f7e803fc151" require "codeclimate-test-reporter" CodeClimate::TestReporter.start require 'simplecov' require 'coveralls' Coveralls.wear! SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter[ SimpleCov::Formatter::HTMLFormatter, Coveralls::SimpleCov::Formatter ] SimpleCov.start $LOAD_PATH.unshift File.expand_path('../../lib', __FILE__) require 'yasuri'
Version data entries
5 entries across 5 versions & 1 rubygems
Version | Path |
---|---|
yasuri-0.0.6 | spec/spec_helper.rb |
yasuri-0.0.5 | spec/spec_helper.rb |
yasuri-0.0.4 | spec/spec_helper.rb |
yasuri-0.0.3 | spec/spec_helper.rb |
yasuri-0.0.2 | spec/spec_helper.rb |