ruby-client/spec/features/setup_spec.rb
Paul Daigle 98a71c3acf Library no longer supporting ruby 1.9.x
1.9.x will be deprecated in February of 2015, so there is little
incentive to write our new library to support it. 1.9.x users should
still be able to use V1 of the API.

This commit adds some changes, such as named arguments, that are
incompatible with 1.9.x.
2014-09-24 16:15:54 -04:00

14 lines
286 B
Ruby

require 'spec_helper'
context 'local variables' do
it "should find the root address" do
expect(ROOT_ADDRESS).not_to be_nil
end
it "should find the user" do
expect(TEST_USER).not_to be_nil
end
it "should find the user" do
expect(TEST_PASS).not_to be_nil
end
end