Sha256: 349d6e531c1e7299211226ec5559fb47a1c0bad46f66cf836a02c739f1276cac
Contents?: true
Size: 555 Bytes
Versions: 14
Compression:
Stored size: 555 Bytes
Contents
require 'spec_helper' describe Jack::Create do before(:all) do Jack::UI.mute = true @create = Jack::Create.new(test_options) end describe "jack" do it "create environment" do command = @create.build_command # puts "command = #{command }" expect(command).to include('eb create') expect(command).to include('--cname hi-web-stag-1') expect(command).to include('--keyname "default"') expect(command).to include('--cfg hi-web-stag-1') expect(command).to include('hi-web-stag-1') end end end
Version data entries
14 entries across 14 versions & 1 rubygems