test/lib/vedeu/renderers/all_test.rb in vedeu-0.7.0 vs test/lib/vedeu/renderers/all_test.rb in vedeu-0.7.1
- old
+ new
@@ -76,11 +76,11 @@
subject
end
context 'when there is content' do
let(:output) {
- Vedeu::Models::Escape
+ Vedeu::Cells::Escape
.new(value: Vedeu::EscapeSequences::Esc.hide_cursor)
}
it 'hides the cursor before rendering the content to avoid cursor ' \
'flicker' do
@@ -91,10 +91,10 @@
it 'shows the cursor after rendering the content' do
Vedeu.expects(:trigger).with(:_show_cursor_)
subject
end
- it { subject.must_be_instance_of(Vedeu::Models::Escape) }
+ it { subject.must_be_instance_of(Vedeu::Cells::Escape) }
end
context 'when there is no content' do
it { subject.must_be_instance_of(NilClass) }
end