コード例 #1
0
ファイル: test_views.py プロジェクト: flyun/zamboni
 def test_parse_post(self, urlopen):
     junk, transactions = views._parse(sample_refund)
     eq_(transactions['0']['status'], 'Refunded')
コード例 #2
0
ファイル: test_views.py プロジェクト: vdt/zamboni
 def test_parse_post(self, urlopen):
     junk, transactions = views._parse(sample_refund)
     eq_(transactions["0"]["status"], "Refunded")
コード例 #3
0
ファイル: test_views.py プロジェクト: LucianU/zamboni
 def test_parse_post(self, urlopen):
     # TODO(andym): flesh this out and conflate with ashort code.
     junk, transactions = views._parse(sample_refund)
     eq_(transactions['0']['status'], 'Refunded')
コード例 #4
0
ファイル: test_views.py プロジェクト: prodigeni/zamboni
 def test_parse_post(self, urlopen):
     junk, transactions = views._parse(sample_refund)
     eq_(transactions['0']['status'], 'Refunded')
コード例 #5
0
 def test_parse_post(self, urlopen):
     # TODO(andym): flesh this out and conflate with ashort code.
     junk, transactions = views._parse(sample_refund)
     eq_(transactions['0']['status'], 'Refunded')