view test/lib/legit_client_test.rb @ 253:d726e8b92dd1

Support animated gif (same as video)
author nanaya <me@nanaya.net>
date Mon, 25 Mar 2024 02:49:50 +0900
parents 43cbceac80ab
children
line wrap: on
line source

require 'test_helper'

class LegitClientTest < ActiveSupport::TestCase
  test 'loads timeline' do
    assert_not_nil LegitClient.timeline('2791517370')
  end

  test 'loads user_by_id' do
    assert_not_nil LegitClient.user_by_id('2791517370')
  end

  test 'loads user_by_username' do
    assert_not_nil LegitClient.user_by_username('edogawa_test')
  end
end