Sha256: 40c0b028daef564d52211dd42253d9eb9a883fbdd99699623fd99d8a9ba7db19

Contents?: true

Size: 1.69 KB

Versions: 7

Compression:

Stored size: 1.69 KB

Contents

# frozen_string_literal: true

require 'spec_helper'

describe "Stealth::Reply" do

  let!(:unstructured_text) {
    { 'reply_type' => 'text', 'text' => 'Hello World!' }
  }
  let!(:unstructured_delay) {
    { 'reply_type' => 'delay', 'duration' => 'dynamic' }
  }
  let(:text_reply) { Stealth::Reply.new(unstructured_reply: unstructured_text) }
  let(:delay_reply) { Stealth::Reply.new(unstructured_reply: unstructured_delay) }

  describe 'hash-like [] getter' do
    it 'should return the values' do
      expect(text_reply['text']).to eq 'Hello World!'
      expect(delay_reply['duration']).to eq 'dynamic'
    end
  end

  describe 'hash-like []= setter' do
    it 'should return the values' do
      text_reply['woot'] = 'root'
      delay_reply['duration'] = 4.3
      expect(text_reply['woot']).to eq 'root'
      expect(delay_reply['duration']).to eq 4.3
    end
  end

  describe 'reply_type' do
    it 'should act as a getter method for reply_type' do
      expect(text_reply.reply_type).to eq 'text'
      expect(delay_reply.reply_type).to eq 'delay'
    end
  end

  describe 'delay?' do
    it 'should return false for a text reply' do
      expect(text_reply.delay?).to be false
    end

    it 'should return true for a delay reply' do
      expect(delay_reply.delay?).to be true
    end
  end

  describe 'self.dynamic_delay' do
    it 'should return a new Stealth::Reply' do
      expect(Stealth::Reply.dynamic_delay).to be_a(Stealth::Reply)
    end

    it 'should be a dynamic delay' do
      expect(Stealth::Reply.dynamic_delay.delay?).to be true
      expect(Stealth::Reply.dynamic_delay.reply_type).to eq 'delay'
      expect(Stealth::Reply.dynamic_delay['duration']).to eq 'dynamic'
    end
  end

end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
stealth-2.0.0.beta7 spec/reply_spec.rb
stealth-2.0.0.beta6 spec/reply_spec.rb
stealth-2.0.0.beta5 spec/reply_spec.rb
stealth-2.0.0.beta4 spec/reply_spec.rb
stealth-2.0.0.beta3 spec/reply_spec.rb
stealth-2.0.0.beta2 spec/reply_spec.rb
stealth-2.0.0.beta1 spec/reply_spec.rb