Last active
December 14, 2015 13:19
-
-
Save jfredett/5092826 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 'spec_helper' | |
| describe QuitCommand do | |
| let(:terminal) { double('terminal', shutdown: true ) } | |
| let(:command) { QuitCommand.new terminal } | |
| context do | |
| subject{ command } | |
| it_behaves_like "a command" | |
| end | |
| context do | |
| subject { terminal } | |
| before { command.execute } | |
| it { should have_received :shutdown } | |
| end | |
| end |
Author
jfredett
commented
Mar 5, 2013
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment