test/unit/configuracao_test.rb in cieloz-0.0.20 vs test/unit/configuracao_test.rb in cieloz-0.0.21
- old
+ new
@@ -1,8 +1,8 @@
describe Cieloz::Configuracao do
let(:_) { Cieloz::Configuracao }
- let(:hash) { { numero: 123, chave: "abc123" } }
+ let(:_hash) { { numero: 123, chave: "abc123" } }
before do
_.reset!
end
@@ -63,15 +63,15 @@
_.credenciais.chave.must_equal cielo_ec.chave
end
end
describe "set" do
- before { _.credenciais = hash }
+ before { _.credenciais = _hash }
it "returns DadosEc with credenciais attributes" do
- _.credenciais.numero.must_equal hash[:numero]
- _.credenciais.chave.must_equal hash[:chave]
+ _.credenciais.numero.must_equal _hash[:numero]
+ _.credenciais.chave.must_equal _hash[:chave]
end
it "returns the same DadosEc in subsequent calls" do
_.credenciais.must_equal _.credenciais
end
@@ -82,10 +82,10 @@
it "returns homologation host when credenciais is not set" do
_.host.must_equal Cieloz::Homologacao::HOST
end
it "returns production host when credenciais is set" do
- _.credenciais = hash
+ _.credenciais = _hash
_.host.must_equal Cieloz::Configuracao::HOST
end
end
end