🧚 A practical web framework for Gleam

Update examples

Changed files
+16 -16
examples
00-hello-world
01-routing
02-working-with-form-data
03-working-with-json
05-using-a-database
06-serving-static-assets
09-configuring-default-responses
10-working-with-files
+1 -1
examples/00-hello-world/test/app_test.gleam
··· 14 14 |> should.equal(200) 15 15 16 16 response.headers 17 - |> should.equal([#("content-type", "text/html")]) 17 + |> should.equal([#("content-type", "text/html; charset=utf-8")]) 18 18 19 19 response 20 20 |> testing.string_body
+1 -1
examples/01-routing/test/app_test.gleam
··· 15 15 |> should.equal(200) 16 16 17 17 response.headers 18 - |> should.equal([#("content-type", "text/html")]) 18 + |> should.equal([#("content-type", "text/html; charset=utf-8")]) 19 19 20 20 response 21 21 |> testing.string_body
+2 -2
examples/02-working-with-form-data/test/app_test.gleam
··· 15 15 |> should.equal(200) 16 16 17 17 response.headers 18 - |> should.equal([#("content-type", "text/html")]) 18 + |> should.equal([#("content-type", "text/html; charset=utf-8")]) 19 19 20 20 response 21 21 |> testing.string_body ··· 55 55 |> should.equal(200) 56 56 57 57 response.headers 58 - |> should.equal([#("content-type", "text/html")]) 58 + |> should.equal([#("content-type", "text/html; charset=utf-8")]) 59 59 60 60 response 61 61 |> testing.string_body
+2 -2
examples/03-working-with-json/test/app_test.gleam
··· 22 22 |> should.equal(415) 23 23 24 24 response.headers 25 - |> should.equal([#("accept", "application/json")]) 25 + |> should.equal([#("accept", "application/json; charset=utf-8")]) 26 26 } 27 27 28 28 pub fn submit_missing_parameters_test() { ··· 49 49 |> should.equal(201) 50 50 51 51 response.headers 52 - |> should.equal([#("content-type", "application/json")]) 52 + |> should.equal([#("content-type", "application/json; charset=utf-8")]) 53 53 54 54 response 55 55 |> testing.string_body
+1 -1
examples/05-using-a-database/test/app_test.gleam
··· 40 40 response.status 41 41 |> should.equal(200) 42 42 response.headers 43 - |> should.equal([#("content-type", "application/json")]) 43 + |> should.equal([#("content-type", "application/json; charset=utf-8")]) 44 44 45 45 // Initially there are no people in the database 46 46 response
+1 -1
examples/06-serving-static-assets/test/app_test.gleam
··· 26 26 |> should.equal(200) 27 27 28 28 response.headers 29 - |> should.equal([#("content-type", "text/html")]) 29 + |> should.equal([#("content-type", "text/html; charset=utf-8")]) 30 30 } 31 31 32 32 pub fn get_stylesheet_test() {
+7 -7
examples/09-configuring-default-responses/test/app_test.gleam
··· 15 15 |> should.equal(200) 16 16 17 17 response.headers 18 - |> should.equal([#("content-type", "text/html")]) 18 + |> should.equal([#("content-type", "text/html; charset=utf-8")]) 19 19 20 20 let assert True = 21 21 response ··· 31 31 |> should.equal(500) 32 32 33 33 response.headers 34 - |> should.equal([#("content-type", "text/html")]) 34 + |> should.equal([#("content-type", "text/html; charset=utf-8")]) 35 35 36 36 let assert True = 37 37 response ··· 46 46 |> should.equal(422) 47 47 48 48 response.headers 49 - |> should.equal([#("content-type", "text/html")]) 49 + |> should.equal([#("content-type", "text/html; charset=utf-8")]) 50 50 51 51 let assert True = 52 52 response ··· 61 61 |> should.equal(400) 62 62 63 63 response.headers 64 - |> should.equal([#("content-type", "text/html")]) 64 + |> should.equal([#("content-type", "text/html; charset=utf-8")]) 65 65 66 66 let assert True = 67 67 response ··· 76 76 |> should.equal(405) 77 77 78 78 response.headers 79 - |> should.equal([#("allow", ""), #("content-type", "text/html")]) 79 + |> should.equal([#("allow", ""), #("content-type", "text/html; charset=utf-8")]) 80 80 81 81 let assert True = 82 82 response ··· 91 91 |> should.equal(404) 92 92 93 93 response.headers 94 - |> should.equal([#("content-type", "text/html")]) 94 + |> should.equal([#("content-type", "text/html; charset=utf-8")]) 95 95 96 96 let assert True = 97 97 response ··· 106 106 |> should.equal(413) 107 107 108 108 response.headers 109 - |> should.equal([#("content-type", "text/html")]) 109 + |> should.equal([#("content-type", "text/html; charset=utf-8")]) 110 110 111 111 let assert True = 112 112 response
+1 -1
examples/10-working-with-files/test/app_test.gleam
··· 15 15 |> should.equal(200) 16 16 17 17 response.headers 18 - |> should.equal([#("content-type", "text/html")]) 18 + |> should.equal([#("content-type", "text/html; charset=utf-8")]) 19 19 20 20 response 21 21 |> testing.string_body