本文整理汇总了Python中nose.tools.trivial.eq_函数的典型用法代码示例。如果您正苦于以下问题:Python eq_函数的具体用法?Python eq_怎么用?Python eq_使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了eq_函数的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test
def test(self):
""" 文章が適切に形態素に分解される """
text = u'吾輩は猫である'
expect = [u'吾輩', u'は', u'猫', u'で', u'ある']
tokens = tokenize(text)
eq_(tokens, expect)
示例2: test_no_explicit_urlconf
def test_no_explicit_urlconf(self):
response = make_response_for_request(
'language-list',
{'developer': self.developer1.pk},
None,
)
eq_(200, response.status_code)
示例3: test_str
def test_str(self):
""" パスからラッパーオブジェクトを作る """
wrapper = FileObjectWrapper("/dev/null")
eq_(wrapper.name, "/dev/null")
with wrapper.file as f:
f.read(1)
示例4: test
def test(self):
""" バイト列をユニコード文字列に変換する """
expect = u"吾輩は猫である"
binary = expect.encode("utf-8")
text = binary2unicode(binary)
eq_(text, expect)
示例5: test_parse_default
def test_parse_default(self):
sys.argv = ['rabbitracer']
args = _parse_args()
eq_(args.hostname, 'localhost')
eq_(args.username, 'guest')
eq_(args.password, 'guest')
eq_(args.virtualhost, '/')
eq_(args.pretty_print, False)
示例6: test_parse_default
def test_parse_default(self):
sys.argv = ['pydevinit']
args = _parse_args()
eq_(args.project_name, None)
eq_(args.source_path, None)
eq_(args.python_type, 'python')
eq_(args.python_version, 2.7)
eq_(args.python_interpreter, 'Default')
示例7: test
def test(self):
'''
正常系: 構文解析器を使った置換をテストする
'''
strategy = TokenReplaceStrategy(u'後で', u'あとで')
replaced_text = strategy(u'前後で後で')
eq_(replaced_text, u'前後であとで')
示例8: test_success_hit
def test_success_hit(self):
'''
正常系: 単一の行の中に目当ての文字列が含まれている
'''
text = 'ほげほげ。更に、ふがふが'
hit_list = list(detect(text))
eq_(hit_list[0].lineno, 1)
示例9: test_build
def test_build(self):
params = {
'command': 'listUsers',
'keyword': 'ad',
}
builder = SignatureBuilder(self.APIKEY, self.SECRETKEY)
signature = builder.build(params)
eq_(signature, b'QEq3xbEHhBmSfFw4RwVzkWyQYWc=')
示例10: test_success_miss
def test_success_miss(self):
'''
正常系: 単一の行の中に目当ての文字列が含まれていない
'''
text = 'ほげほげ。ふがふが'
hit_list = list(detect(text))
eq_(len(hit_list), 0)
示例11: test_inverse
def test_inverse(self):
""" マッチしない言葉を探す """
query = u'輩'
detector = StreamDetector(query, inverse=True)
line = u'吾輩は猫である'
trove = detector.feed(line)
eq_(trove.line, line)
示例12: test_miss
def test_miss(self):
""" 形態素にもとづいて文章にマッチしない """
query = u'輩'
detector = StreamDetector(query)
line = u'吾輩は猫である'
trove = detector.feed(line)
eq_(trove, None)
示例13: test_file
def test_file(self):
""" ファイルオブジェクトからラッパーオブジェクトを作る """
f = open("/dev/null")
wrapper = FileObjectWrapper(f)
eq_(wrapper.name, "/dev/null")
with wrapper.file as f:
f.read(1)
示例14: test_success
def test_success(self):
'''
正常系: 単一の行に目当ての文字列が含まれている
'''
text = 'ほげほげ。更に、ふがふが'
expect = 'ほげほげ。さらに、ふがふが'
result = replace(text)
eq_(result, expect)
示例15: test_ok_currency_usd
def test_ok_currency_usd(self):
sys.argv = [
'mtg',
'-c',
'USD',
]
args = _parse_args()
eq_(args.currency, 'USD')
eq_(args.annual_salary, Currencies.salary('USD'))