Mercurial > rsstweet
view test/lib/legit_client_test.rb @ 265:a8fd79a8d170 default tip
Update with better config example
author | nanaya <me@nanaya.net> |
---|---|
date | Sun, 09 Feb 2025 03:55:18 +0900 |
parents | 4f86037f6e6a |
children |
line wrap: on
line source
require "test_helper" class LegitClientTest < ActiveSupport::TestCase test "loads timeline" do assert_not_nil LegitClient.new.timeline("2791517370") end test "loads user_by_id" do assert_not_nil LegitClient.new.user_by_id("2791517370") end test "loads user_by_username" do assert_not_nil LegitClient.new.user_by_username("edogawa_test") end end