Sha256: e53cd6e8e6de46bbf5f71122efcdbbde715c12309f27d2293e174a294d6da3f2

Contents?: true

Size: 1.08 KB

Versions: 3

Compression:

Stored size: 1.08 KB

Contents

require "#{File.dirname(__FILE__)}/test_helper"

class TestStacks < MiniTest::Unit::TestCase

  def test_get_stack
    with_app do |app_data|
      response = heroku.get_stack(app_data['name'])

      assert_equal(200, response.status)
    end
  end

  def test_get_stack_app_not_found
    assert_raises(Heroku::API::Errors::NotFound) do
      heroku.get_stack(random_name)
    end
  end

  def test_put_stack
    with_app do |app_data|
      response = heroku.put_stack(app_data['name'], 'bamboo-ree-1.8.7')

      assert_equal(200, response.status)
    end
  end

  def test_put_stack_app_not_found
    assert_raises(Heroku::API::Errors::NotFound) do
      heroku.put_stack(random_name, 'bamboo-ree-1.8.7')
    end
  end

  def test_put_stack_stack_not_found
    with_app do |app_data|
      assert_raises(Heroku::API::Errors::NotFound) do
        heroku.put_stack(app_data['name'], random_name)
      end
    end
  end

  def test_put_stack_cedar
    with_app do |app_data|
      assert_raises(Heroku::API::Errors::Error) do
        heroku.put_stack(app_data['name'], 'cedar')
      end
    end
  end

end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
heroku-api-0.1.2 test/test_stacks.rb
heroku-api-0.1.1 test/test_stacks.rb
heroku-api-0.1.0 test/test_stacks.rb