spec/lib/convox/client_spec.rb in convox_installer-1.0.1 vs spec/lib/convox/client_spec.rb in convox_installer-1.0.2
- old
+ new
@@ -37,11 +37,11 @@
describe "#install" do
it "should require the correct config vars" do
client = described_class.new
expect { client.install_convox }.to raise_error("aws_region is missing from the config!")
- client = described_class.new(config: {aws_region: "asdf"})
- expect { client.install_convox }.to raise_error("aws_access_key_id is missing from the config!")
+ client = described_class.new(config: {aws_region: "us-east-1"})
+ expect { client.install_convox }.to raise_error("stack_name is missing from the config!")
end
it "should run the correct convox CLI command" do
client = described_class.new(
config: {