mirror of
https://github.com/pry/pry.git
synced 2022-11-09 12:35:05 -05:00
27 lines
628 B
Ruby
27 lines
628 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
RSpec.describe Pry::Env do
|
||
|
describe "#[]" do
|
||
|
let(:key) { 'PRYTESTKEY' }
|
||
|
|
||
|
after { ENV.delete(key) }
|
||
|
|
||
|
context "when ENV contains the passed key" do
|
||
|
before { ENV[key] = 'val' }
|
||
|
after { ENV.delete(key) }
|
||
|
|
||
|
specify { expect(described_class[key]).to eq('val') }
|
||
|
end
|
||
|
|
||
|
context "when ENV doesn't contain the passed key" do
|
||
|
specify { expect(described_class[key]).to be_nil }
|
||
|
end
|
||
|
|
||
|
context "when ENV contains the passed key but its value is nil" do
|
||
|
before { ENV[key] = '' }
|
||
|
|
||
|
specify { expect(described_class[key]).to be_nil }
|
||
|
end
|
||
|
end
|
||
|
end
|