File: friend_list_spec.rb

package info (click to toggle)
ruby-twitter 7.0.0-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 4,884 kB
  • sloc: ruby: 10,919; makefile: 6
file content (9 lines) | stat: -rw-r--r-- 235 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
require 'helper'

describe Twitter::Streaming::FriendList do
  it 'is an array' do
    friend_list = Twitter::Streaming::FriendList.new([1, 2, 3])
    expect(friend_list).to be_an Array
    expect(friend_list.first).to eq(1)
  end
end