Page Menu
Home
Musing Studio
Search
Configure Global Search
Log In
Files
F10528865
parse_test.go
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
658 B
Subscribers
None
parse_test.go
View Options
package
posts
import
(
"testing"
)
type
titleTest
struct
{
in
,
title
,
body
string
}
func
TestExtractTitle
(
t
*
testing
.
T
)
{
tests
:=
[]
titleTest
{
{
`# Hello World
This is my post`
,
"Hello World"
,
"This is my post"
},
{
"No title"
,
""
,
"No title"
},
{
`Not explicit title
It's not explicit.
Yep.`
,
""
,
`Not explicit title
It's not explicit.
Yep.`
},
{
"# Only a title"
,
""
,
"# Only a title"
},
}
for
_
,
test
:=
range
tests
{
title
,
body
:=
ExtractTitle
(
test
.
in
)
if
title
!=
test
.
title
{
t
.
Fatalf
(
"Wanted title '%s', got '%s'"
,
test
.
title
,
title
)
}
if
body
!=
test
.
body
{
t
.
Fatalf
(
"Wanted body '%s', got '%s'"
,
test
.
body
,
body
)
}
}
}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sun, Apr 6, 4:38 AM (17 h, 43 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
3187703
Attached To
rWC Write.as Web Core
Event Timeline
Log In to Comment