You are here

public function NodeRateWidgetFivestarTest::testVoting in Rate 8.2

Tests voting.

File

tests/src/FunctionalJavascript/NodeRateWidgetFivestarTest.php, line 49

Class

NodeRateWidgetFivestarTest
Tests for the "Fivestar" widget.

Namespace

Drupal\Tests\rate\FunctionalJavascript

Code

public function testVoting() {

  // Log in as first user and vote 5 stars.
  $this
    ->drupalLogin($this->users[1]);
  $this
    ->drupalGet('node/1');

  // Log in as different user and vote 3 stars.
  $this
    ->drupalLogin($this->users[2]);
  $this
    ->drupalGet('node/1');
}