Skip to content

Commit

Permalink
add test
Browse files Browse the repository at this point in the history
  • Loading branch information
ttytm committed Jun 14, 2024
1 parent 063c88c commit d418fae
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/utils/text_utils_test.v
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ fn test_pascal_case_to_snake_case() {
assert pascal_case_to_snake_case('SomeValue') == 'some_value'
assert pascal_case_to_snake_case('SomeValue') == 'some_value'
assert pascal_case_to_snake_case('SomeValue1') == 'some_value_1'
assert pascal_case_to_snake_case('some_value_1') == 'some_value_1'
assert pascal_case_to_snake_case('Some') == 'some'
}

Expand Down

0 comments on commit d418fae

Please sign in to comment.