summaryrefslogtreecommitdiffstats
path: root/tests/test_python/test_selectors.py
blob: 74ace8d78e8e7b4b6c4829b0042e9e96a03a9f05 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# vim:fileencoding=utf-8:noet
from __future__ import (unicode_literals, division, absolute_import, print_function)

import os
import sys

from functools import partial

import tests.modules.vim as vim_module

from tests.modules.lib import Pl
from tests.modules import TestCase


class TestVim(TestCase):
	def test_single_tab(self):
		pl = Pl()
		single_tab = partial(self.vim.single_tab, pl=pl, segment_info=None, mode=None)
		with vim_module._with('tabpage'):
			self.assertEqual(single_tab(), False)
		self.assertEqual(single_tab(), True)

	@classmethod
	def setUpClass(cls):
		sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(os.path.dirname(__file__)), 'vim_sys_path')))
		from powerline.selectors import vim
		cls.vim = vim

	@classmethod
	def tearDownClass(cls):
		sys.path.pop(0)


if __name__ == '__main__':
	from tests.modules import main
	main()