mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
parent
dd4374cec6
commit
62cc8a2d4b
5 changed files with 83 additions and 10 deletions
|
@ -23,6 +23,20 @@ var _ = Describe("Helpers", func() {
|
|||
Expect(toSnakeCase("snake_case")).To(Equal("snake_case"))
|
||||
})
|
||||
})
|
||||
Describe("toCamelCase", func() {
|
||||
It("converts snake_case", func() {
|
||||
Expect(toCamelCase("snake_case")).To(Equal("snakeCase"))
|
||||
})
|
||||
It("converts PascalCase", func() {
|
||||
Expect(toCamelCase("PascalCase")).To(Equal("PascalCase"))
|
||||
})
|
||||
It("converts camelCase", func() {
|
||||
Expect(toCamelCase("camelCase")).To(Equal("camelCase"))
|
||||
})
|
||||
It("converts ALLCAPS", func() {
|
||||
Expect(toCamelCase("ALLCAPS")).To(Equal("ALLCAPS"))
|
||||
})
|
||||
})
|
||||
Describe("toSQLArgs", func() {
|
||||
type Embed struct{}
|
||||
type Model struct {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue