Welcome to mirror list, hosted at ThFree Co, Russian Federation.

activity_spec.rb « microsoft_teams « lib « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d1eac7204a620bbe206113ff0ec952a04006a90a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe MicrosoftTeams::Activity do
  subject { described_class.new(title: 'title', subtitle: 'subtitle', text: 'text', image: 'image') }

  describe '#prepare' do
    it 'returns the correct JSON object' do
      expect(subject.prepare).to eq({
        'activityTitle' => 'title',
        'activitySubtitle' => 'subtitle',
        'activityText' => 'text',
        'activityImage' => 'image'
      })
    end
  end
end