()
| 608 | } |
| 609 | |
| 610 | func gitOpsVCSUserTestRelease() *v1pb.Release { |
| 611 | return &v1pb.Release{ |
| 612 | Type: v1pb.Release_VERSIONED, |
| 613 | Files: []*v1pb.Release_File{ |
| 614 | { |
| 615 | Path: "migrations/001__create_table.sql", |
| 616 | Version: "001", |
| 617 | Statement: []byte("CREATE TABLE vcs_user_test(id INTEGER PRIMARY KEY);"), |
| 618 | }, |
| 619 | }, |
| 620 | } |
| 621 | } |
| 622 | |
| 623 | func TestGitOpsRollout(t *testing.T) { |
| 624 | t.Parallel() |
no outgoing calls
no test coverage detected