We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a6869a6 commit d50fde7Copy full SHA for d50fde7
1 file changed
spec/Config_spec.rb
@@ -16,8 +16,9 @@
16
it "retrieves config information from environment variables" do
17
ENV.store("SL_USERNAME", "PoohBear")
18
ENV.store("SL_API_KEY", "DEADBEEFBADF00D")
19
+ ENV.store("SL_API_USER_AGENT", "de trackerz")
20
- expect(SoftLayer::Config.environment_settings).to eq({ :username => "PoohBear", :api_key => "DEADBEEFBADF00D" })
21
+ expect(SoftLayer::Config.environment_settings).to eq({ :user_agent => "de trackerz", :username => "PoohBear", :api_key => "DEADBEEFBADF00D" })
22
end
23
24
it "retrieves the properties from a custom file" do
0 commit comments