Sha256: 4e67183b00da87932eee0eb286ff2d8381feb46302bfbd6a85139be3d184ebe1
Contents?: true
Size: 1.09 KB
Versions: 5
Compression:
Stored size: 1.09 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::RequestFailed) do heroku.put_stack(app_data['name'], 'cedar') end end end end
Version data entries
5 entries across 5 versions & 1 rubygems
Version | Path |
---|---|
heroku-api-0.1.7 | test/test_stacks.rb |
heroku-api-0.1.6 | test/test_stacks.rb |
heroku-api-0.1.5 | test/test_stacks.rb |
heroku-api-0.1.4 | test/test_stacks.rb |
heroku-api-0.1.3 | test/test_stacks.rb |