コード例 #1
0
ファイル: test_yahoo.py プロジェクト: wdv4758h/zdict
class TestyDict:
    def setup_method(self, method):
        self.dict = YahooDict()

    def teardown_method(self, method):
        del self.dict

    def test__get_url(self):
        url = 'https://tw.dictionary.search.yahoo.com/search?p=test'
        assert url == self.dict._get_url('test')
コード例 #2
0
ファイル: test_yahoo.py プロジェクト: hsukvn/zdict
class TestyDict:
    def setup_method(self, method):
        self.dict = YahooDict(get_args())

    def teardown_method(self, method):
        del self.dict

    def test__get_url(self):
        url = 'https://tw.dictionary.search.yahoo.com/search?p=test'
        assert url == self.dict._get_url('test')