Remove uneeded let() in Prompter spec

This commit is contained in:
Thibault Jouan 2014-02-10 19:06:28 +00:00
parent 9a71beefff
commit dbb4bed4e8

View File

@ -4,7 +4,6 @@ module Producer::Core
describe Prompter do
let(:input) { StringIO.new }
let(:output) { StringIO.new }
let(:env) { Env.new(input: input, output: output) }
subject(:prompter) { Prompter.new(input, output) }
describe '#initialize' do