Files
heroku-buildpack-python/spec/hatchet/python_spec.rb
T
2018-09-04 11:26:13 -04:00

11 lines
303 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.6/)
end
end
end