def test_tilde_pos_negative_negate(self): """Test that tilde position gives 1 when tilde is found and `NEGATE` is enabled.""" self.assertEqual( _wcparse.tilde_pos( '!~pattern', _wcparse.GLOBTILDE | _wcparse.REALPATH | _wcparse.NEGATE), 1)
def test_tilde_pos_normal(self): """Test that tilde position gives 0 when tilde found.""" self.assertEqual(_wcparse.tilde_pos('~pattern', _wcparse.GLOBTILDE | _wcparse.REALPATH), 0)
def test_tilde_pos_none(self): """Test that tilde position gives -1 when no tilde found.""" self.assertEqual(_wcparse.tilde_pos('pattern', _wcparse.GLOBTILDE | _wcparse.REALPATH), -1)