Sha256: 06a52a7a0f6d2f20348bf96228043cd4fcbd93225e456ad20054424a584cd731
Contents?: true
Size: 891 Bytes
Versions: 1
Compression:
Stored size: 891 Bytes
Contents
require 'spec_helper' # require 'onewheel-duckduckgo' describe Lita::Handlers::OnewheelDuckDuckGo, lita_handler: true do before(:each) do end it { is_expected.to route_command('duck something') } it 'does neat ducky things' do mock_result_json = File.open('spec/fixtures/mock_result.json').read allow(RestClient).to receive(:get).and_return(JSON.parse mock_result_json) send_command 'duck yo' expect(replies.last).to include('DuckDuckGo Result: DuckDuckGo is an Internet search engine that emphasizes') end it 'uses the url unless the abstract exists' do mock_result_json = File.open('spec/fixtures/mock_no_abstract.json').read allow(RestClient).to receive(:get).and_return(JSON.parse mock_result_json) send_command 'duck yo' expect(replies.last).to include('DuckDuckGo Result: https://en.wikipedia.org/wiki/Duck_(disambiguation)') end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
lita-onewheel-duckduckgo-0.0.1 | spec/lita/handlers/onewheel_duckduckgo_spec.rb |