Skip to content
Snippets Groups Projects

Resolve #3021671 "Node revisions current"

1 unresolved thread

Closes #3021671

Merge request reports

Loading
Loading

Activity

Filter activity
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
  • 201 $this->drupalLogin($this->editor);
    202
    203 $revision_log = $this->randomMachineName(10);
    204 $node = $this->drupalCreateNode(['revision_log' => $revision_log]);
    205
    206 // Create 51 revisions to generate paginated revisions.
    207 $revision_count = 51;
    208 for ($i = 0; $i < $revision_count; $i++) {
    209 $node->setTitle($this->randomString());
    210 $node->setRevisionLogMessage($i);
    211 $node->setNewRevision();
    212 $node->save();
    213 }
    214
    215 $this->drupalGet('node/' . $node->id() . '/revisions');
    216 $this->assertSession()->statusCodeEquals(200);
  • added 1 commit

    • 71739b61 - Apply 2 suggestion(s) to 2 file(s)

    Compare with previous version

  • added 1 commit

    Compare with previous version

  • Please register or sign in to reply
    Loading