Home | History | Annotate | Download | only in idle_test

Lines Matching refs:Equal

23         Equal = self.assertEqual
24 Equal(fp.get_indent(self.test_comment), '')
25 Equal(fp.get_indent(self.trailingws_comment), '')
26 Equal(fp.get_indent(self.leadingws_comment), ' ')
27 Equal(fp.get_indent(self.leadingws_nocomment), ' ')
30 Equal = self.assertEqual
32 Equal(fp.get_comment_header(self.test_comment), '#')
33 Equal(fp.get_comment_header(self.trailingws_comment), '#')
34 Equal(fp.get_comment_header(self.leadingws_comment), ' #')
36 Equal(fp.get_comment_header(self.leadingws_nocomment), ' ')
37 Equal(fp.get_comment_header(self.test_nocomment), '')
163 Equal = self.assertEqual
166 Equal(reform(' ', 1), ' ')
167 Equal(reform("Hello world", 20), "Hello world")
170 Equal(reform(hw, 1), "O\nhello\nworld")
171 Equal(reform(hw, 6), "O\nhello\nworld")
172 Equal(reform(hw, 7), "O hello\nworld")
173 Equal(reform(hw, 12), "O hello\nworld")
174 Equal(reform(hw, 13), "O hello world")
178 Equal(reform(hw, 1), "\nO\nhello\nworld")
179 Equal(reform(hw, 6), "\nO\nhello\nworld")
180 Equal(reform(hw, 7), "\nO hello\nworld")
181 Equal(reform(hw, 12), "\nO hello\nworld")
182 Equal(reform(hw, 13), "\nO hello world")
189 Equal = self.assertEqual
199 Equal(result, expected)
208 Equal(result, expected)