Sha256: 70ca8846bfbff3aff95468ffd35a7c1b337414fc072e393966dd1bf9eee33550

Contents?: true

Size: 559 Bytes

Versions: 28

Compression:

Stored size: 559 Bytes

Contents

require "helpers/integration_test_helper"

class TestRoutes < FogIntegrationTest
  def setup
    @subject = Fog::Compute[:google].routes
  end

  def test_all
    assert_operator(@subject.all.size, :>=, 2,
                    "Number of all routes should be greater or equal than 2 - default GW and default routes")
  end

  def test_get
    @subject.all do |route|
      refute_nil @subject.get(route.name)
    end
  end

  def test_bad_get
    assert_nil @subject.get("bad-name")
  end

  def test_enumerable
    assert_respond_to @subject, :each
  end
end

Version data entries

28 entries across 28 versions & 2 rubygems

Version Path
fog-google-1.10.0 test/integration/compute/core_networking/test_routes.rb
fog-google-1.9.1 test/integration/compute/core_networking/test_routes.rb
fog-google-1.9.0 test/integration/compute/core_networking/test_routes.rb
fog-google-1.8.2 test/integration/compute/core_networking/test_routes.rb
fog-google-1.8.1 test/integration/compute/core_networking/test_routes.rb
fog-google-1.8.0 test/integration/compute/core_networking/test_routes.rb
fog-google-1.7.1 test/integration/compute/core_networking/test_routes.rb
fog-google-1.7.0 test/integration/compute/core_networking/test_routes.rb