view test/lib/legit_client_test.rb @ 263:2fc76c51e184 default tip

Remove the RT_ env prefix
author nanaya <me@nanaya.net>
date Mon, 16 Dec 2024 01:41:44 +0900
parents e2150dce4e90
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