Ejemplo n.º 1
0
 def test_is_native(self):
     native = NativeAsset()
     cny = Asset('CNY', self.source)
     assert native.is_native()
     assert not cny.is_native()
Ejemplo n.º 2
0
 def test_is_native(self):
     native = Asset('XLM')
     assert native.is_native()
     assert not self.cny.is_native()
Ejemplo n.º 3
0
 def test_is_native(self):
     native = Asset('XLM')
     cny = Asset('CNY', self.source)
     assert native.is_native()
     assert not cny.is_native()