From e576b1d52a12c48b06c76e9f75fadb1428c5b0d4 Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Mon, 20 Oct 2014 18:21:42 -0400 Subject: test that .process returns the correct value in all cases --- t/osc_test.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 't/osc_test.py') diff --git a/t/osc_test.py b/t/osc_test.py index d2b5438..565d6d4 100644 --- a/t/osc_test.py +++ b/t/osc_test.py @@ -4,34 +4,34 @@ class OSCTest(VT100Test): def test_title(self): assert self.vt.title() == "" assert self.vt.icon_name() == "" - self.vt.process("\033]2;it's a title\007") + self.process("\033]2;it's a title\007") assert self.vt.title() == "it's a title" assert self.vt.icon_name() == "" - self.vt.process("\033]2;\007") + self.process("\033]2;\007") assert self.vt.title() == "" assert self.vt.icon_name() == "" def test_icon_name(self): assert self.vt.title() == "" assert self.vt.icon_name() == "" - self.vt.process("\033]1;it's an icon name\007") + self.process("\033]1;it's an icon name\007") assert self.vt.title() == "" assert self.vt.icon_name() == "it's an icon name" - self.vt.process("\033]1;\007") + self.process("\033]1;\007") assert self.vt.title() == "" assert self.vt.icon_name() == "" def test_title_icon_name(self): assert self.vt.title() == "" assert self.vt.icon_name() == "" - self.vt.process("\033]0;it's both\007") + self.process("\033]0;it's both\007") assert self.vt.title() == "it's both" assert self.vt.icon_name() == "it's both" - self.vt.process("\033]0;\007") + self.process("\033]0;\007") assert self.vt.title() == "" assert self.vt.icon_name() == "" def test_unknown_sequence(self): assert self.vt.cell(0, 0).contents() == "" - self.vt.process("\033]499;some long, long string?\007") + self.process("\033]499;some long, long string?\007") assert self.vt.cell(0, 0).contents() == "" -- cgit v1.2.3-54-g00ecf