Skip to content

Commit 878dcc2

Browse files
add article to home
1 parent 3296458 commit 878dcc2

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

priv/articles/home.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,5 @@
22
Fifteen years into my software journey, I've found my home in Elixir and functional programming. I'm someone who finds deep satisfaction in the process itself—whether debugging systems, experimenting with home brewing, or watching seeds become gardens.
33

44
## Articles
5+
- [How I Use LLM's to Extract Structured Data](/structured-data-extraction-llms)
56
- [Phoenix is Great... but you can build elixir web apps without it.](/you-dont-need-phoenix)

test/boc/router_test.exs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,14 @@ defmodule Boc.RouterTest do
44
import Plug.Test
55
# import Plug.Conn
66

7-
test "/ returns hello world" do
7+
test "/ returns home route" do
88
conn =
99
conn(:get, "/")
1010
|> Boc.Router.call([])
1111

1212
assert conn.status === 200
13-
assert conn.resp_body === "hello world!"
13+
assert conn.resp_body =~ "About me"
14+
assert conn.resp_body =~ "Articles"
1415
end
1516

1617
test "unmatched route returns 404" do

0 commit comments

Comments
 (0)