added FetchScheduledTweets

This commit is contained in:
Valentine 2024-02-23 10:34:33 +03:00
parent 14ba33db9d
commit 7b2215391a
3 changed files with 164 additions and 0 deletions

12
schedule_test.go Normal file
View file

@ -0,0 +1,12 @@
package twitterscraper_test
import (
"testing"
)
func TestFetchScheduledTweets(t *testing.T) {
_, err := testScraper.FetchScheduledTweets()
if err != nil {
t.Error(err)
}
}