View | Details | Raw Unified | Return to bug 34789
Collapse All | Expand All

(-)a/t/cypress/integration/ERM/Titles_spec.ts (-4 / +4 lines)
Lines 181-188 describe("Title CRUD operations", () => { Link Here
181
        cy.get("#title_parent_publication_title_id").type(
181
        cy.get("#title_parent_publication_title_id").type(
182
            erm_title.parent_publication_title_id
182
            erm_title.parent_publication_title_id
183
        );
183
        );
184
        cy.get("#title_preceeding_publication_title_id").type(
184
        cy.get("#title_preceding_publication_title_id").type(
185
            erm_title.preceeding_publication_title_id
185
            erm_title.preceding_publication_title_id
186
        );
186
        );
187
        cy.get("#title_access_type").type(erm_title.access_type);
187
        cy.get("#title_access_type").type(erm_title.access_type);
188
188
Lines 333-341 describe("Title CRUD operations", () => { Link Here
333
            "have.value",
333
            "have.value",
334
            erm_title.parent_publication_title_id
334
            erm_title.parent_publication_title_id
335
        );
335
        );
336
        cy.get("#title_preceeding_publication_title_id").should(
336
        cy.get("#title_preceding_publication_title_id").should(
337
            "have.value",
337
            "have.value",
338
            erm_title.preceeding_publication_title_id
338
            erm_title.preceding_publication_title_id
339
        );
339
        );
340
        cy.get("#title_access_type").should(
340
        cy.get("#title_access_type").should(
341
            "have.value",
341
            "have.value",
(-)a/t/cypress/support/e2e.js (-1 / +1 lines)
Lines 66-72 cy.get_title = () => { Link Here
66
        num_last_vol_online: "num last vol",
66
        num_last_vol_online: "num last vol",
67
        online_identifier: "online identifier",
67
        online_identifier: "online identifier",
68
        parent_publication_title_id: "parent id",
68
        parent_publication_title_id: "parent id",
69
        preceeding_publication_title_id: "preceeding id",
69
        preceding_publication_title_id: "preceeding id",
70
        print_identifier: "print identifier",
70
        print_identifier: "print identifier",
71
        publication_title: "publication title",
71
        publication_title: "publication title",
72
        publication_type: "journal",
72
        publication_type: "journal",
(-)a/t/db_dependent/api/v1/erm_eholdings_titles.t (-3 / +2 lines)
Lines 241-247 subtest 'add() tests' => sub { Link Here
241
        first_editor      => "First editor",
241
        first_editor      => "First editor",
242
        parent_publication_title_id =>
242
        parent_publication_title_id =>
243
          "Title identifier of the parent publication",
243
          "Title identifier of the parent publication",
244
        preceeding_publication_title_id =>
244
        preceding_publication_title_id =>
245
          "Title identifier of any preceding publication title",
245
          "Title identifier of any preceding publication title",
246
        access_type => "Access type"
246
        access_type => "Access type"
247
    };
247
    };
Lines 415-421 subtest 'update() tests' => sub { Link Here
415
        first_editor      => "First editor",
415
        first_editor      => "First editor",
416
        parent_publication_title_id =>
416
        parent_publication_title_id =>
417
          "Title identifier of the parent publication",
417
          "Title identifier of the parent publication",
418
        preceeding_publication_title_id =>
418
        preceding_publication_title_id =>
419
          "Title identifier of any preceding publication title",
419
          "Title identifier of any preceding publication title",
420
        access_type => "Access type"
420
        access_type => "Access type"
421
    };
421
    };
422
- 

Return to bug 34789