Refactor specs

This commit is contained in:
Thibault Jouan
2014-09-27 12:20:24 +00:00
parent 52e8338a7d
commit 52dcfcedd3
17 changed files with 21 additions and 21 deletions

View File

@@ -4,7 +4,7 @@ module Producer::Core
describe Prompter do
let(:input) { StringIO.new }
let(:output) { StringIO.new }
subject(:prompter) { Prompter.new(input, output) }
subject(:prompter) { described_class.new(input, output) }
describe '#initialize' do
it 'assigns the given input' do