(actual, expected []*schema.Schema)
| 408 | } |
| 409 | |
| 410 | func compareSchemas(actual, expected []*schema.Schema) { |
| 411 | g.Expect(actual).To(g.HaveLen(len(expected))) |
| 412 | for i, s := range actual { |
| 413 | sortProperties(s) |
| 414 | sortProperties(expected[i]) |
| 415 | schema.SortActions(s) |
| 416 | schema.SortActions(expected[i]) |
| 417 | g.Expect(s).To(g.Equal(expected[i])) |
| 418 | } |
| 419 | } |
| 420 | |
| 421 | type properties []schema.Property |
| 422 |
no test coverage detected