Sha256: 9a78cda2a4b9e122923fc46b281b3119fec5ca9b5d03a7e363b984b36ac61613

Contents?: true

Size: 744 Bytes

Versions: 4

Compression:

Stored size: 744 Bytes

Contents

require_relative "../../test_helper"

module Unit
  module Api
    class TestBigQuery < Minitest::Test

      describe GoogleApis::Api::BigQuery do
        describe ".api" do
          it "returns the default API name" do
            assert_equal "bigquery", GoogleApis::Api::BigQuery.api
          end
        end

        describe ".version" do
          it "returns the default API version" do
            assert_equal 2, GoogleApis::Api::BigQuery.version
          end
        end

        describe ".auth_scope" do
          it "returns the default API authentication scope" do
            assert_equal "https://www.googleapis.com/auth/bigquery", GoogleApis::Api::BigQuery.auth_scope
          end
        end
      end

    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
google-apis-0.1.3 test/unit/api/test_big_query.rb
google-apis-0.1.2 test/unit/api/test_big_query.rb
google-apis-0.1.1 test/unit/api/test_big_query.rb
google-apis-0.1.0 test/unit/api/test_big_query.rb