Files
heroku-buildpack-python/spec/hatchet/python_spec.rb
T
2020-02-19 09:26:29 -05:00

11 lines
304 B
Ruby

require_relative '../spec_helper'
describe "Python!!!!!!!!!!!" do
it "🐍" do
Hatchet::Runner.new('python-getting-started', stack: DEFAULT_STACK).deploy do |app|
expect(app.output).to match(/Installing pip/)
expect(app.run('python -V')).to match(/3.6.10/)
end
end
end