Sha256: 279d0e498e29d258e8c29818d7fd7548a6e61c2a74b5c6fb8c3d943546f5288d

Contents?: true

Size: 1.43 KB

Versions: 8

Compression:

Stored size: 1.43 KB

Contents

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

class TestConfigVars < MiniTest::Unit::TestCase

  def test_delete_app_config_var
    with_app('stack' => 'cedar') do |app_data|
      heroku.put_config_vars(app_data['name'], {'KEY' => 'value'})

      response = heroku.delete_config_var(app_data['name'], 'KEY')

      assert_equal(200, response.status)
      assert_equal({}, response.body)
    end
  end

  def test_delete_app_config_var_app_not_found
    assert_raises(Heroku::API::Errors::NotFound) do
      heroku.delete_config_var(random_name, 'key')
    end
  end

  def test_get_app_config_vars
    with_app('stack' => 'cedar') do |app_data|
      response = heroku.get_config_vars(app_data['name'])

      assert_equal(200, response.status)
      assert_equal({}, response.body)
    end
  end

  def test_get_app_config_vars_app_not_found
    assert_raises(Heroku::API::Errors::NotFound) do
      heroku.get_config_vars(random_name)
    end
  end

  def test_put_app_config_vars
    with_app('stack' => 'cedar') do |app_data|
      response = heroku.put_config_vars(app_data['name'], {'KEY' => 'value'})

      assert_equal(200, response.status)
      assert_equal({'KEY' => 'value'}, response.body)

      heroku.delete_config_var(app_data['name'], 'KEY')
    end
  end

  def test_put_app_config_vars_app_not_found
    assert_raises(Heroku::API::Errors::NotFound) do
      heroku.put_config_vars(random_name, {'KEY' => 'value'})
    end
  end

end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
heroku-api-0.1.7 test/test_config_vars.rb
heroku-api-0.1.6 test/test_config_vars.rb
heroku-api-0.1.5 test/test_config_vars.rb
heroku-api-0.1.4 test/test_config_vars.rb
heroku-api-0.1.3 test/test_config_vars.rb
heroku-api-0.1.2 test/test_config_vars.rb
heroku-api-0.1.1 test/test_config_vars.rb
heroku-api-0.1.0 test/test_config_vars.rb