spec/beaker/hypervisor/ec2_helper_spec.rb in beaker-aws-0.1.0 vs spec/beaker/hypervisor/ec2_helper_spec.rb in beaker-aws-0.2.0
- old
+ new
@@ -28,17 +28,17 @@
it "can set ports for database host" do
expect(ec2.amiports(database_host)).to be === [22, 61613, 8139, 5432, 8080, 8081, 1111]
end
it "can set ports for master host" do
- expect(ec2.amiports(master_host)).to be === [22, 61613, 8139, 8140, 8142, 9999]
+ expect(ec2.amiports(master_host)).to be === [22, 61613, 8139, 8140, 8142, 8170, 9999]
end
it "can set ports for dashboard host" do
expect(ec2.amiports(dashboard_host)).to be === [22, 61613, 8139, 443, 4433, 4435, 2003]
end
it "can set ports for combined master/database/dashboard host" do
- expect(ec2.amiports(all_in_one_host)).to be === [22, 61613, 8139, 5432, 8080, 8081, 8140, 8142, 443, 4433, 4435]
+ expect(ec2.amiports(all_in_one_host)).to be === [22, 61613, 8139, 5432, 8080, 8081, 8140, 8142, 8170, 443, 4433, 4435]
end
end
end