Integration tests with Hatchet

This commit is contained in:
schneems
2018-08-16 13:34:05 -05:00
committed by Casey Faist
parent 39d2cd6de8
commit ce14e1edf8
7 changed files with 112 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
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