summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/runtime/cases/perl.py
blob: 2c6b3b784685a7535232f751eb3ac1e7b964fbb2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#
# SPDX-License-Identifier: MIT
#

import os

from oeqa.runtime.case import OERuntimeTestCase
from oeqa.core.decorator.depends import OETestDepends
from oeqa.runtime.decorator.package import OEHasPackage

class PerlTest(OERuntimeTestCase):
    @OETestDepends(['ssh.SSHTest.test_ssh'])
    @OEHasPackage(['perl'])
    def test_perl_works(self):
        status, output = self.target.run("perl -e '$_=\"Uryyb, jbeyq\"; tr/a-zA-Z/n-za-mN-ZA-M/;print'")
        self.assertEqual(status, 0)
        self.assertEqual(output, "Hello, world")