view test/lib/legit_client_test.rb @ 251:43cbceac80ab

Remove model test and add client test
author nanaya <me@nanaya.net>
date Mon, 17 Jul 2023 20:54:04 +0900
parents
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