mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
8933179017
Added tests to cover regresssion. In reference to #100.
25 lines
542 B
PHP
25 lines
542 B
PHP
<?php
|
|
|
|
class SortTest extends TestCase
|
|
{
|
|
protected $book;
|
|
|
|
public function setUp()
|
|
{
|
|
parent::setUp();
|
|
$this->book = \BookStack\Book::first();
|
|
}
|
|
|
|
public function test_drafts_do_not_show_up()
|
|
{
|
|
$this->asAdmin();
|
|
$pageRepo = app('\BookStack\Repos\PageRepo');
|
|
$draft = $pageRepo->getDraftPage($this->book);
|
|
|
|
$this->visit($this->book->getUrl())
|
|
->see($draft->name)
|
|
->visit($this->book->getUrl() . '/sort')
|
|
->dontSee($draft->name);
|
|
}
|
|
|
|
} |