tests/test_branch.py @ 0850e9a3c68b

Tear out incoming/outgoing functionality

This stuff is the most brittle part of hg-prompt, and I never use it.
I don't have the will to maintain it as Mercurial constantly breaks
backwards compatibility in their plugin API.  At this point I regret
ever writing a Mercurial extension.  I'm sick of the Hamster Wheel
of Backwards Incompatibility eating an hour of my life every time I
stupidly decide to upgrade my software.
author Steve Losh <steve@stevelosh.com>
date Sat, 02 Feb 2019 15:52:28 -0500
parents 724156256017
children (none)
'''Test output of {branch}.'''

from nose import *
from util import *


@with_setup(setup_sandbox, teardown_sandbox)
def test_default_branch():
    output = prompt(fs='{branch}')
    assert output == 'default'
    
    output = prompt(fs='{on {branch}}')
    assert output == 'on default'


@with_setup(setup_sandbox, teardown_sandbox)
def test_non_default_branch():
    hg_branch('test')
    
    output = prompt(fs='{branch}')
    assert output == 'test'
    
    output = prompt(fs='{on the {branch} branch}')
    assert output == 'on the test branch'


@with_setup(setup_sandbox, teardown_sandbox)
def test_quiet_filter():
    output = prompt(fs='{branch|quiet}')
    assert output == ''
    
    output = prompt(fs='{on {branch|quiet}}')
    assert output == ''
    
    hg_branch('test')
    
    output = prompt(fs='{branch|quiet}')
    assert output == 'test'
    
    output = prompt(fs='{on the {branch|quiet} branch}')
    assert output == 'on the test branch'