Sha256: 87cbb4c854652e9d24bdf8d8ff8acccb8755a4d2f5767509b552f9660b502436
Contents?: true
Size: 922 Bytes
Versions: 17
Compression:
Stored size: 922 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_blank' do specify do described_class.handle_blank.should eq( "Please specify a new handle. Run 'relish help' for usage information." ) end end describe '#version_blank' do specify do described_class.version_blank.should eq( "Please specify a version name. 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
17 entries across 17 versions & 1 rubygems