You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
1.1 KiB
52 lines
1.1 KiB
require 'test_helper'
|
|
|
|
module RecordEditorCalls
|
|
def exec_editor(*command)
|
|
editor_commands << command
|
|
end
|
|
|
|
def reset!
|
|
@editor_commands = []
|
|
end
|
|
|
|
def editor_commands
|
|
@editor_commands ||= []
|
|
end
|
|
end
|
|
|
|
module Cask::CLI::Edit
|
|
extend RecordEditorCalls
|
|
end
|
|
|
|
describe Cask::CLI::Edit do
|
|
before do
|
|
Cask::CLI::Edit.reset!
|
|
end
|
|
|
|
it 'opens the editor for the specified cask' do
|
|
Cask::CLI::Edit.run('alfred')
|
|
Cask::CLI::Edit.editor_commands.must_equal [
|
|
[Cask.path('alfred')]
|
|
]
|
|
end
|
|
|
|
it 'throws away additional arguments and uses the first' do
|
|
Cask::CLI::Edit.run('adium', 'alfred')
|
|
Cask::CLI::Edit.editor_commands.must_equal [
|
|
[Cask.path('adium')]
|
|
]
|
|
end
|
|
|
|
it 'raises an exception when the cask doesnt exist' do
|
|
lambda {
|
|
Cask::CLI::Edit.run('notacask')
|
|
}.must_raise CaskUnavailableError
|
|
end
|
|
|
|
it 'allows new casks to be created with the --create flag' do
|
|
Cask::CLI::Edit.run('brand-spankin-new', '--create')
|
|
Cask::CLI::Edit.editor_commands.must_equal [
|
|
[Cask.tapspath.join(Cask.default_tap, 'Casks', 'brand-spankin-new.rb')]
|
|
]
|
|
end
|
|
end
|
|
|