CJ_Clippy e9bb1ce4fb
Some checks failed
ci / build (push) Successful in 8m35s
ci / Tests & Checks (push) Failing after 6m37s
add socials tests
2025-03-11 10:40:38 -08:00

18 lines
353 B
Elixir

defmodule Bright.XPostTest do
use Bright.DataCase
alias Bright.Socials.XPost
@sample_feed "https://rss.app/feeds/FhPetvUY036xiFau.xml"
describe "x_posts" do
# import Bright.SocialsFixtures
@tag :integration
test "get_posts/1" do
{:ok, posts} = XPost.get_posts(@sample_feed)
assert length(posts) > 0
end
end
end