Exemplo n.º 1
0
	def testKnowsAllSettings(self):
		all_settings = [
			'hlsearch',
			'incsearch',
			'autoindent'
		]

		self.assertEqual(sorted(all_settings), sorted(list(VI_OPTIONS.keys())))
Exemplo n.º 2
0
	def testKnowsAllSettings(self):
		all_settings = [
			'hlsearch',
			'magic',
			'incsearch',
			'autoindent',
			'showminimap',
			'rulers',
		]

		self.assertEqual(sorted(all_settings), sorted(list(VI_OPTIONS.keys())))
Exemplo n.º 3
0
    def testKnowsAllSettings(self):
        all_settings = [
            'hlsearch',
            'magic',
            'incsearch',
            'autoindent',
            'showminimap',
            'rulers',
        ]

        self.assertEqual(sorted(all_settings), sorted(list(VI_OPTIONS.keys())))