2020-02-19 07:52:46 -05:00
|
|
|
require "test_helper"
|
2019-10-09 22:25:20 -04:00
|
|
|
|
|
|
|
class EnvironmentTesterTest < Minitest::Test
|
2020-02-19 07:52:46 -05:00
|
|
|
describe ".call" do
|
2019-10-09 22:25:20 -04:00
|
|
|
subject { ::EnvironmentTester.call }
|
2020-02-19 07:52:46 -05:00
|
|
|
it "returns the environment variable value" do
|
|
|
|
assert_equal "api_key_value", subject
|
2019-10-09 22:25:20 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|