Sha256: 900c9828026481210c07270f7914465191f0de158dcafef248fc1beee6cf6220
Contents?: true
Size: 712 Bytes
Versions: 1
Compression:
Stored size: 712 Bytes
Contents
require 'spec_helper' module Relish describe ErrorMessages do describe '#project_blank' do specify do described_class.project_blank.should eq( "Please specify a project. Run 'relish help' for usage information." ) end end describe '#handle_is_blank' do specify do described_class.handle_is_blank.should eq( "Please specify a new handle. Run 'relish help' for usage information." ) end end describe '#unknown_command' do specify do described_class.unknown_command.should eq( "Unknown command. Run 'relish help' for usage information." ) end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
relish-0.1.3 | spec/relish/error_messages_spec.rb |