1
0
Fork 0
mirror of https://github.com/pry/pry.git synced 2022-11-09 12:35:05 -05:00
pry--pry/spec/commands/gist_spec.rb

33 lines
821 B
Ruby
Raw Normal View History

# These tests are out of date.
2016-09-10 02:31:04 -04:00
# They need to be updated for the new 'gist' API, but im too sleepy to
# do that now.
require_relative '../helper'
describe 'gist' do
it 'has a dependency on the jist gem' do
2015-03-10 16:49:29 -04:00
expect(Pry::Command::Gist.command_options[:requires_gem]).to eq("gist")
end
2014-04-28 01:23:54 -04:00
before do
Pad.gist_calls = {}
end
2014-04-28 01:23:54 -04:00
# In absence of normal mocking, just monkeysmash these with no undoing after.
module ::Gist
class << self
def login!; Pad.gist_calls[:login!] = true end
def gist(*args)
Pad.gist_calls[:gist_args] = args
{'html_url' => 'http://gist.blahblah'}
end
def copy(content); Pad.gist_calls[:copy_args] = content end
end
end
2014-04-28 01:23:54 -04:00
it 'nominally logs in' do
pry_eval 'gist --login'
2015-03-10 16:49:29 -04:00
expect(Pad.gist_calls[:login!]).not_to be_nil
2014-04-28 01:23:54 -04:00
end
end