tests/test_bookmark.py @ 34c0e34e7fe7

Also hide ^ marker when on a non-tip head
author Sietse Brouwer <sbbrouwer@gmail.com>
date Tue, 22 Mar 2016 10:49:32 +0100
parents 869146b8b9fb
children (none)
'''Test output of {bookmark}.'''

from nose import *
from util import *

@with_setup(setup_sandbox, teardown_sandbox)
def test_bookmark():
    hg_bookmark('test')

    output = prompt(fs='{bookmark}')
    assert output == 'test'

@with_setup(setup_sandbox, teardown_sandbox)
def test_no_bookmark():
    hg_bookmark('test')
    hg_deactivate_bookmark()

    output = prompt(fs='{bookmark}')
    assert output == ''