Sha256: 3cfc8d5771d8bcb08600edc52e3fe23efd825ee4791a8ef766472d1269875fc3
Contents?: true
Size: 1.05 KB
Versions: 1
Compression:
Stored size: 1.05 KB
Contents
if defined?(RUBY_VERSION) && RUBY_VERSION =~ /1\.9/ require 'test/unit' require 'rspec' Rspec.configure do |c| c.mock_with :rspec end else # Ruby 1.8.x require 'test/unit' require 'rubygems' require 'spec/test/unit' end # load the libraries require 'koala' # load testing data libraries require 'koala/live_testing_data_helper' # API tests require 'koala/api_base_tests' require 'koala/graph_api/graph_collection_tests' require 'koala/graph_api/graph_api_no_access_token_tests' require 'koala/graph_api/graph_api_with_access_token_tests' require 'koala/rest_api/rest_api_no_access_token_tests' require 'koala/rest_api/rest_api_with_access_token_tests' require 'koala/graph_and_rest_api/graph_and_rest_api_no_token_tests' require 'koala/graph_and_rest_api/graph_and_rest_api_with_token_tests' # OAuth tests require 'koala/oauth/oauth_tests' # Subscriptions tests require 'koala/realtime_updates/realtime_updates_tests' # Services tests require 'koala/net_http_service_tests' # Test users tests require 'koala/test_users/test_users_tests'
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
koala-0.10.0 | spec/koala_spec_helper.rb |