Last active
November 23, 2016 10:01
-
-
Save maicher/405a10faebfe31f9f2225805d15dc3f7 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'cli_spinnable' | |
module Cli | |
extend CliSpinnable | |
end | |
puts 'HAPPY RUN (should succeed):' | |
Cli.with_spinner do |cli| | |
cli.print 'Downloading something' | |
sleep 1 | |
cli.print '...downloaded 1MB' | |
cli.tick | |
cli.print 'Processing data' | |
sleep 1 | |
cli.tick | |
end | |
puts 'SAD RUN (should fail):' | |
Cli.with_spinner do |cli| | |
cli.print 'Downloading something' | |
sleep 1 | |
cli.print '...downloaded 1MB' | |
cli.tick | |
cli.print 'Processing data' | |
sleep 1 | |
1 / 0 # produces exception | |
cli.tick # this will not be reached | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment