tp 0.2.0 → 0.2.1
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/tp/presenter.rb +1 -1
- data/lib/tp/version.rb +1 -1
- data/spec/lib/tp/presenter_spec.rb +5 -1
- metadata +1 -1
data/lib/tp/presenter.rb
CHANGED
data/lib/tp/version.rb
CHANGED
@@ -15,6 +15,10 @@ describe TP::Presenter do
|
|
15
15
|
# Paragraph
|
16
16
|
|
17
17
|
This is a really long paragraph. Kinda.
|
18
|
+
|
19
|
+
#
|
20
|
+
|
21
|
+
Blank header
|
18
22
|
MD
|
19
23
|
}
|
20
24
|
|
@@ -26,7 +30,7 @@ describe TP::Presenter do
|
|
26
30
|
describe "#present" do
|
27
31
|
it "works" do
|
28
32
|
Keyboard.should_receive(:wait_for_return).exactly(1).times
|
29
|
-
Screen.should_receive(:clear!).exactly(
|
33
|
+
Screen.should_receive(:clear!).exactly(5).times
|
30
34
|
|
31
35
|
presenter.present
|
32
36
|
end
|